11

while(self.isWorking)
{
If(self.bored || !tasks.Length)
exit;
else
devRant();
}

Comments
  • 5
    While(!dead){
    codeOn();
    }
  • 3
    This is so true! <3
  • 3
    The fact that length isn’t a bool but is tested for truthiness really makes me sad.
  • 0
    @Brolls but thats the point of truthiness
  • 1
    @mkdirLuci4 :( it’s just so inconsistent. Is it testing if it’s defined? If it’s greater than 0? Spooky action is spooky in a language.
  • 1
    @mkdirLuci4 I’ll admit it’s fun to use when you know what it does though. But it’s a bit “cheaty”
  • 1
    @Brolls its so cheaty lmao. Its so fucking hilarious to see new devs read my code and be like "what the fuck is this hack and slash code"
Add Comment