Last active
August 29, 2015 14:14
-
-
Save drvinceknight/f201db05f38ad1211428 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
def simple_sum(a, b): | |
return a + b | |
print simple_sum(5, 3) # You should get 8 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment