Created
January 7, 2015 17:26
-
-
Save zachfeldman/f36627511b157cd1deab to your computer and use it in GitHub Desktop.
sad
This file contains 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
// life motto | |
function sad(your_life){ | |
this.stop == function(){ | |
console.log("Stop being sad, fool!") | |
} | |
// Pseudocode for now, | |
// basically should determine | |
// sadness based on life factors | |
// and return boolean true/false | |
} | |
function beAwesome(){ | |
// Pseudocode for now, | |
// basically books a | |
// skydiving trip | |
// automatically | |
} | |
if (sad() == true){ | |
sad.stop(); | |
beAwesome(); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment