Skip to content

Instantly share code, notes, and snippets.

@jes
Created June 25, 2022 15:59
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 jes/5258c3684a7a310f699aef8dbbbab279 to your computer and use it in GitHub Desktop.
Save jes/5258c3684a7a310f699aef8dbbbab279 to your computer and use it in GitHub Desktop.
>>> def f():
... return 1
...
>>> def g():
... return f()
...
>>> g()
1
>>> def f():
... return 2
...
>>> g()
2
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment