Skip to content

Instantly share code, notes, and snippets.

@allolex
Created July 9, 2015 15:21
Show Gist options
  • Select an option

  • Save allolex/c8f1224094f86cc0c7b8 to your computer and use it in GitHub Desktop.

Select an option

Save allolex/c8f1224094f86cc0c7b8 to your computer and use it in GitHub Desktop.
def a
b
end
def b
c
end
def c
d
end
def d
raise "Boom!"
end
begin
a
rescue => e
puts "I'm being rescued!"
puts e.backtrace
end
puts "All done!"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment