Skip to content

Instantly share code, notes, and snippets.

@ggreer
Last active November 24, 2015 05:49
Show Gist options
  • Save ggreer/c93a88a99a4c272ad46f to your computer and use it in GitHub Desktop.
Save ggreer/c93a88a99a4c272ad46f to your computer and use it in GitHub Desktop.
ggreer@carbon:~/Desktop% ./scope.py
True
#!/usr/bin/env python
def blah():
if 1 == 1:
a = True
else:
print("never get here")
print(a)
blah()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment