Skip to content

Instantly share code, notes, and snippets.

@timruffles
Created August 27, 2014 17:07
Show Gist options
  • Save timruffles/e64567c44ebbee816fe8 to your computer and use it in GitHub Desktop.
Save timruffles/e64567c44ebbee816fe8 to your computer and use it in GitHub Desktop.
return early
def something(x,y):
if !x:
raise "argh!"
else:
if !y:
raise "oh noes!"
else:
return "Happy"
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