Skip to content

Instantly share code, notes, and snippets.

@zachfeldman
Created January 7, 2015 17:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save zachfeldman/f36627511b157cd1deab to your computer and use it in GitHub Desktop.
Save zachfeldman/f36627511b157cd1deab to your computer and use it in GitHub Desktop.
sad
// 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