Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 
avatar of Farhat Zaman

Farhat Zaman

Farhat Zaman has asked 0 questions and find answers to 4 problems.

Stats

98
EtPoint
31
Vote count
0
questions
4
answers

About

class MyLife {
        constructor() {
            this.startKicking();
        }

        startKicking() {
            while (lifeStillKicking) {
                this.sleep(Timespan.FromHours(8.0));
                this.Work();
                this.GoHomeEnjoyLife();
            }
        }

        GoHomeEnjoyLife() {
            videoGames.interact(MyLife);
            Mobile.interact(MyLife);
        }
    }