Help for this page

Select Code to Download


  1. or download this
    use strict;
    use Carp qw(croak);
    ...
    };
    
    hello();
    
  2. or download this
    use strict;
    use Carp qw(croak);
    ...
    };
    
    hello();
    
  3. or download this
    START:
    goto INSIDE;
    ...
        INSIDE2:
            print "World\n";
    };
    
  4. 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