5

Coffee coffee = new Coffee();

If (coffee.Empty)
{
coffee.Refill();
}
else
{
coffee.Drink();
}

//I am a software developer
//Coffee addicted

Comments
  • 6
    you should probably loop that.

    and hopefully your coffee object is a singleton...otherwise you will have alot of cups floating around.

    lol...
  • 0
    The coffee drinks itself?
  • 1
    Glad to see CoffeeScript out in the wild
Add Comment