Skip to content

Instantly share code, notes, and snippets.

@dcrosta
Created December 22, 2011 02:55
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 dcrosta/1508713 to your computer and use it in GitHub Desktop.
Save dcrosta/1508713 to your computer and use it in GitHub Desktop.
>>> def adder(amt):
... def inner(start):
... return start + amt
... return inner
...
>>> plusone = adder(1)
>>> plusone(4)
5
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment