Skip to content

Instantly share code, notes, and snippets.

@cesarkawakami
Last active December 27, 2015 01:09
Show Gist options
  • Save cesarkawakami/7243187 to your computer and use it in GitHub Desktop.
Save cesarkawakami/7243187 to your computer and use it in GitHub Desktop.
def func1(x):
print(x)
func2(x + 1)
print(x)
def func2(x):
print(x)
func1(10)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment