User: alexanderdmitri

  • Created: 2655 days ago
  • Karma: 1659
  •     // 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));