Skip to content

Instantly share code, notes, and snippets.

@lihaoyi
Created November 14, 2015 05:25
Show Gist options
  • Save lihaoyi/f5763817b2edfcfece4d to your computer and use it in GitHub Desktop.
Save lihaoyi/f5763817b2edfcfece4d to your computer and use it in GitHub Desktop.
>>> def foo():
... x = 1
... y = (x, lambda: x)
... return (x, y)
...
>>> foo()[1][1]()
1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment