Skip to content

Instantly share code, notes, and snippets.

Created February 9, 2014 22:46
Show Gist options
  • Save anonymous/8907215 to your computer and use it in GitHub Desktop.
Save anonymous/8907215 to your computer and use it in GitHub Desktop.
use v6;
sub failing-routine {
try {
CATCH {
say 'here';
}
die 'there';
}
}
failing-routine;
failing-routine;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment