Help for this page

Select Code to Download


  1. or download this
    package Foo;
    my $coderef = sub { no strict 'refs'; ${ (caller)[0] . "::global" } };
    $global = 'in Foo';
    ...
    $global = 'in Bar';
    
    print &$coderef, "\n";