Skip to content

Instantly share code, notes, and snippets.

@aaronfeng
Created June 14, 2011 16:20
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save aaronfeng/1025253 to your computer and use it in GitHub Desktop.
Save aaronfeng/1025253 to your computer and use it in GitHub Desktop.
Random rescue trivia
# before running the program, do you know what is the output?
begin
begin
raise Exception.new
rescue
puts "Inner Exception"
end
rescue Exception
puts "Outter Exception!"
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment