Created
August 27, 2014 17:07
-
-
Save timruffles/e64567c44ebbee816fe8 to your computer and use it in GitHub Desktop.
return early
This file contains 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 something(x,y): | |
if !x: | |
raise "argh!" | |
else: | |
if !y: | |
raise "oh noes!" | |
else: | |
return "Happy" | |
This file contains 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 something(x,y): | |
if !x: | |
raise "argh!" | |
if !y: | |
raise "oh noes!" | |
return "Happy" | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment