Created
November 12, 2015 22:29
-
-
Save amarao/7a4c68398045e9960dfc 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/python | |
def myfunc(arg1, arg2): | |
return arg1 + arg2 | |
print "result": myfunc(1, 2) | |
myfunc(3, 4) # no result, but calling anyway. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment