Created
July 13, 2017 06:26
-
-
Save bjeanes/bef1f86b3fd9b0e13ab2792cbcfa90db 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 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