π¬ Ask me about Industrial Society and Its Future
π± Full-Stack Web Dev Student
<?php
namespace MitchellDocherty;
class About extends Me
{
public function getCurrentWorkplace(): array
{
const langageList =
[
'Python',
'Java',
'JavaScript',
'JSX',
'React'
];
return [
'workplace' => [
'company' => NULL,
'position' => NULL
]
];
}
public function getFutureGoal(): string
{
return 'Find a life enjoying the work you do.';
}
}
?>