Skip to content

Instantly share code, notes, and snippets.

@chriswallace
Last active August 29, 2015 14:14
Show Gist options
  • Save chriswallace/7d97544ce538794a722f to your computer and use it in GitHub Desktop.
Save chriswallace/7d97544ce538794a722f to your computer and use it in GitHub Desktop.
Formula to determine whether or not to tip on take-out food.
/**
* The ballin' equation.
*/
function tip_or_not(){
if ( ballin() ) {
return true;
}
return false;
}
function ballin(){
global $cash;
if( $cash >= 100000 ){
return true
}
return false;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment