Skip to content

Instantly share code, notes, and snippets.

@simeonf
Created November 5, 2013 04:50
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 simeonf/7314067 to your computer and use it in GitHub Desktop.
Save simeonf/7314067 to your computer and use it in GitHub Desktop.
>>> def outer():
... x = 1
... def inner():
... print x
... return inner # inner hasn't run yet
>>> f = outer() # f is inner now, but no print statement has run
>>> f()
1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment