Skip to content

Instantly share code, notes, and snippets.

@jennz0r
Created May 20, 2019 23:24
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 jennz0r/b3b235936758ba3b34ce8f560a7e7b6c to your computer and use it in GitHub Desktop.
Save jennz0r/b3b235936758ba3b34ce8f560a7e7b6c to your computer and use it in GitHub Desktop.
function nom(food="ice cream") {
console.log(`Time to eat ${food}`);
}
nom(); // Time to eat ice cream
def nom(food="ice cream"):
print 'Time to eat {}'.format(food)
nom() # Time to eat ice cream
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment