Skip to content

Instantly share code, notes, and snippets.

@antvconst
Created June 9, 2014 09:34
Show Gist options
  • Save antvconst/02f47b9d11619af808a8 to your computer and use it in GitHub Desktop.
Save antvconst/02f47b9d11619af808a8 to your computer and use it in GitHub Desktop.
def plus(a, b):
return a+b
def func(a, b, c):
return lambda : a(b, c)
fn = func(plus, 1, 2)
print fn
print fn()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment