Created
February 28, 2012 06:40
-
-
Save lopopolo/1930231 to your computer and use it in GitHub Desktop.
The power of try-catch-finally
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 fun | |
begin | |
return "begin" | |
ensure | |
return "ensure" | |
end | |
end | |
puts "fun returned: '#{fun}'" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment