Skip to content

Instantly share code, notes, and snippets.

@IQAndreas
Last active December 15, 2015 20:18
Show Gist options
  • Save IQAndreas/5317083 to your computer and use it in GitHub Desktop.
Save IQAndreas/5317083 to your computer and use it in GitHub Desktop.
Pseudocode for your average day of coding. (In my case, "coffee" is replaced with "tea".)
coffee.fill();
while (coding)
{
coffee.temperature--;
if (coffee.temperature <= 0)
rememberAboutCoffee();
}
function rememberAboutCoffee()
{
if(!coffee.isFull)
{
coffee.fill();
}
else
{
sipColdCoffee();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment