Skip to content

Instantly share code, notes, and snippets.

@exodist
Created July 28, 2015 21:19
Show Gist options
  • Save exodist/d15601c47e45df107a46 to your computer and use it in GitHub Desktop.
Save exodist/d15601c47e45df107a46 to your computer and use it in GitHub Desktop.
END loop
use strict;
use warnings;
sub do_it {
my $x = 1;
$x++ while caller($x);
print "Doin' it (Depth: $x)\n";
eval "END { do_it; exit }; 1 "|| die $@;
}
do_it();
exit;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment