Created
October 24, 2011 13:35
-
-
Save jnthn/1309042 to your computer and use it in GitHub Desktop.
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
# uncaught class | |
class Dandy is Exception {}; | |
my ($naughty, $lived); | |
{ | |
die Dandy.new(); | |
CATCH { | |
when Naughty { | |
$naughty = 1; | |
} | |
} | |
}; | |
$lived = 1; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment