Skip to content

Instantly share code, notes, and snippets.

@haileylgbt
Last active October 30, 2017 02:22
Show Gist options
  • Save haileylgbt/f62fdc4a0a287c911b940e5b928d263c to your computer and use it in GitHub Desktop.
Save haileylgbt/f62fdc4a0a287c911b940e5b928d263c to your computer and use it in GitHub Desktop.
Funny/nice messages written in code
// life motto
let you = {isSad = true};
if (you.sad) {
you.sad = false;
beAwesome(you);
}
let you = {isSad = false, energy = 6, isAwake = true};
while (you.isAwake) {
if (you.energy <= 10) {
sleep(you, bed);
// when sleep() is executed, isAwake = false
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment