Skip to content

Instantly share code, notes, and snippets.

Created February 9, 2014 22:57
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save anonymous/8907361 to your computer and use it in GitHub Desktop.
Save anonymous/8907361 to your computer and use it in GitHub Desktop.
use v6;
sub failing-routine {
try {
CATCH {
when 'there' {
say 'here';
return False;
}
}
die 'there';
}
}
say 1;
failing-routine;
say 2;
failing-routine;
say 3;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment