Last active
December 15, 2015 20:18
-
-
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".)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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