Skip to content

Instantly share code, notes, and snippets.

@LastTalon
Created April 7, 2018 18:13
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 LastTalon/00d80baa0a54e569179b8e8f9f3b713e to your computer and use it in GitHub Desktop.
Save LastTalon/00d80baa0a54e569179b8e8f9f3b713e to your computer and use it in GitHub Desktop.
def A(x):
def B():
return x
return B
def C(y):
f = A(y)
print f()
C(2) # -> 2
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment