Skip to content

Instantly share code, notes, and snippets.

@hoelzro
Created August 20, 2015 14:50
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 hoelzro/2a6a16ed3980426177b5 to your computer and use it in GitHub Desktop.
Save hoelzro/2a6a16ed3980426177b5 to your computer and use it in GitHub Desktop.
my $has_sub_name = eval { require Sub::Name; 1 };
my $subname;
if($has_sub_name) {
$subname = &Sub::Name::subname;
} else {
$subname = sub { $_[1] };
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment