Skip to content

Instantly share code, notes, and snippets.

@lmarburger
Created February 10, 2014 21:20
Show Gist options
  • Save lmarburger/8924408 to your computer and use it in GitHub Desktop.
Save lmarburger/8924408 to your computer and use it in GitHub Desktop.
Return value from LocalJumpError
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