Skip to content

Instantly share code, notes, and snippets.

@exodist
Created August 19, 2016 23:15
Show Gist options
  • Select an option

  • Save exodist/205a49d69c02086e09e1cdb01bbfdd44 to your computer and use it in GitHub Desktop.

Select an option

Save exodist/205a49d69c02086e09e1cdb01bbfdd44 to your computer and use it in GitHub Desktop.
sub foo(&) {
my $code = shift;
my @got = $code->();
die "codeblock returned stuff, it should not" if @got;
}
sub blah {
return 1 if defined wantarray;
return;
}
foo { blah() };
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment