Skip to content

Instantly share code, notes, and snippets.

@zefirka
Created September 1, 2016 15:14
Show Gist options
  • Save zefirka/d062211e75560633a583ec79402b2aec to your computer and use it in GitHub Desktop.
Save zefirka/d062211e75560633a583ec79402b2aec to your computer and use it in GitHub Desktop.
a = 0
def incer():
def inc():
global a
a+=1
return a
return inc
def sm(x=incer()):
return x()
x = sm()
y = sm()
z = sm()
print (x, y, z)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment