Created
January 16, 2017 16:40
-
-
Save binki/cebd6e5305aa799b386a27c4e12a9873 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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