26

if (!coffee && isEarly)
{
FallAsleepAtDesk();
}

Comments
  • 3
    NO

    if (!coffee)
    {
    FallAsleepAtDesk();
    }

    coffee is always a mandatory
  • 2
    coffee = new Coffee(Coffee.
    TYPE_STRONG);
  • 1
    @lazyDev I find that if I can sleep in then it's fine and I sometimes forget about coffee, but to each their own 😊
  • 1
    if(!coffee || isEarly)
  • 0
    There's a story behind that one
  • 0
    Type-inference made my coffee taste like tea... Oh damn, I hate when parsers decide things for me
Add Comment