Skip to content

Instantly share code, notes, and snippets.

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 wchristian/9e069322fd32b6f85928cb0f3d1f82af to your computer and use it in GitHub Desktop.
Save wchristian/9e069322fd32b6f85928cb0f3d1f82af to your computer and use it in GitHub Desktop.
sub do_a_thing {
do_first_thing(
sub {
my $first = shift;
do_second_thing(
sub {
my $second = shift;
combine_things( $first, $second );
}
)
}
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment