Skip to content

Instantly share code, notes, and snippets.

@donaldh
Created September 7, 2013 21:03
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 donaldh/6479271 to your computer and use it in GitHub Desktop.
Save donaldh/6479271 to your computer and use it in GitHub Desktop.
sub robin (Callable $what) {
LEAVE say 'leaving';
$what()
}
sub batman {
robin {
fail "NO";
};
}
my $res = batman;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment