Skip to content

Instantly share code, notes, and snippets.

@drj11
Last active January 28, 2016 15:46
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 drj11/f527b02c4cbc4b79a780 to your computer and use it in GitHub Desktop.
Save drj11/f527b02c4cbc4b79a780 to your computer and use it in GitHub Desktop.
# With "unamed expressions"
x = 1 + 2 + 3 + 4
# Without:
x = 1
x += 2
x += 3
x += 4
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment