Skip to content

Instantly share code, notes, and snippets.

@binki
Created January 16, 2017 16:40
Show Gist options
  • Save binki/cebd6e5305aa799b386a27c4e12a9873 to your computer and use it in GitHub Desktop.
Save binki/cebd6e5305aa799b386a27c4e12a9873 to your computer and use it in GitHub Desktop.
#!/usr/bin/env python
def something():
pass
def hi():
something()
something()
bye = 5
sigh = 10
return bye
hi_ret_value = hi()
print(hi_ret_value) # 5
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment