Skip to content

Instantly share code, notes, and snippets.

@wchristian
Created May 23, 2011 16:17
Show Gist options
  • Save wchristian/986969 to your computer and use it in GitHub Desktop.
Save wchristian/986969 to your computer and use it in GitHub Desktop.
def foo(m):
def bar(f):
return "%s is a %s" % (m,f)
return bar
quux = foo("this")
print quux("nested def")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment