Skip to content

Instantly share code, notes, and snippets.

@bjeanes
Created July 13, 2017 06:26
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bjeanes/bef1f86b3fd9b0e13ab2792cbcfa90db to your computer and use it in GitHub Desktop.
Save bjeanes/bef1f86b3fd9b0e13ab2792cbcfa90db to your computer and use it in GitHub Desktop.
def explicit
return 42
rescue
:rescued
else
:else
end
def implicit
42
rescue
:rescued
else
:else
end
explicit #=> 42
implicit #=> :else
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment