Created
February 26, 2019 04:57
-
-
Save uoojin95/8bb62082076fda0b06d3e711fe37bef9 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 testFunction(number): | |
if number < 0: | |
return "number is negative" | |
else: | |
return "number is positive" | |
return "wat?" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment