Skip to content

Instantly share code, notes, and snippets.

@picanumber
Last active March 21, 2016 21:41
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 picanumber/89352f15bd8684890b18 to your computer and use it in GitHub Desktop.
Save picanumber/89352f15bd8684890b18 to your computer and use it in GitHub Desktop.
def f1(a, b):
print('call')
return a
def main():
f1(f1(1, 2), f1(2, 3))
main()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment