- Long Generalist Safety Developer ๐ป
- Love Control Robot ๐ฉท ๐ฎ ๐ค
- Like a Tree ๐ฒ
import 'human';
/*
* My daily life
*/
int main(){
int year = 1992;
int month = 9;
int day = 22;
bool isHe = true;
Human johny = Human(year, month, day, isHe);
while(johny.alive){
johny.sleep(7);
if(Human.randomSituation(johny)) continue;
print('hello world! ${johny.coworker?? 'robot'}');
johny.money += johny.work('๐ป');
johny.money -= johny.eat('๐');
johny.value += johny.work_out('๐๐ป');
if(johny.ok) johny.value += johny.study('๐');
print('good night. ${johny.wife?? 'myself'}');
johny.day++;
}
return johny.value;
}

