Skip to content

Instantly share code, notes, and snippets.

@thrasibule
Created October 6, 2017 19:40
Show Gist options
  • Save thrasibule/b2ed49f58417b47530184141787687c7 to your computer and use it in GitHub Desktop.
Save thrasibule/b2ed49f58417b47530184141787687c7 to your computer and use it in GitHub Desktop.
a = 1
def f():
def g(x):
return a+x
return g
def g():
a = 2
def h(x):
return a + x
return h
pomme = f()
poire = g()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment