Created
February 10, 2014 21:20
-
-
Save lmarburger/8924408 to your computer and use it in GitHub Desktop.
Return value from LocalJumpError
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
begin | |
Proc.new { return 42 }.call | |
rescue LocalJumpError => e | |
puts "LocalJumpError: exit_value=#{e.exit_value}" | |
end | |
#=> "LocalJumpError: exit_value=42" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment