Created
July 18, 2012 15:11
-
-
Save iblue/3136778 to your computer and use it in GitHub Desktop.
Kaboom
This file contains hidden or 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 foo | |
bar | |
end | |
def bar | |
baz | |
end | |
def baz | |
foo | |
end | |
begin | |
foo | |
rescue | |
puts $! | |
puts caller[0..100] | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment