Skip to content

Instantly share code, notes, and snippets.

@jnthn
Created October 24, 2011 13:35
Show Gist options
  • Save jnthn/1309042 to your computer and use it in GitHub Desktop.
Save jnthn/1309042 to your computer and use it in GitHub Desktop.
# 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