|
|
| user: | alexanderdmitri | | created: | January 10, 2017 | | karma: | 1687 | | about: | // Alexander Dmitri is property of Gala Corp.
(function (self) {
console.time("lifetime");
try {
while self.alive {
self.wakeUp();
self.doStuff();
self.sleep();
}
}
catch (fatalError) {
console.error(`Whoops! ${fatalError}`);
}
finally {
self = null;
console.timeEnd("lifetime");
}
}(self));
| | submissions | | comments | | favorites |
|