Skip to content

Instantly share code, notes, and snippets.

@gugod
Created July 19, 2017 06:10
Show Gist options
  • Save gugod/8fee4db25edbe0a3671e2934721a7d77 to your computer and use it in GitHub Desktop.
Save gugod/8fee4db25edbe0a3671e2934721a7d77 to your computer and use it in GitHub Desktop.
use strict;
use warnings;
sub do_this { }
sub do_that { }
sub do_everything {
HERE {
do_this();
do_that();
};
}
do_everything();
last HERE;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment