Felipe Rybakovas

            
const ryba = new dev(
  {
    level: DevLevel.Lead,
    description: 'The guy drinking coffee and coding stuff.',
    skillSet: [
      'Game Development'
      'Software Development', 
      'Team Leadership',
      'Scrum Master',
      'Web3'
    ],
    doCode: useDevPowers,
  }
);

/* This method comes with the dev class out-of-the-box */
let coffee = ryba.doCoffee();

while (coffee > 0) {
    ryba.doCode();
    /*this is sad */
    coffee--;
}