- or download this
use strict;
use Carp qw(croak);
...
};
hello();
- or download this
use strict;
use Carp qw(croak);
...
};
hello();
- or download this
START:
goto INSIDE;
...
INSIDE2:
print "World\n";
};
- or download this
my $handler = sub {
INSIDE:
...
goto INSIDE; # deprecated
goto INSIDE2; # deprecated
goto &$handler; # still works, as we start "just on the outside" of $h
+andler