Help for this page

Select Code to Download


  1. or download this
    {
        no strict 'refs';
    ...
        print B::svref_2object(\&$name)->GV->LINE;
        $name->();
    }
    
  2. or download this
    my $glob = $::{'Foo::'}{some_sub};
    print B::svref_2object(\*$glob)->LINE;
    print B::svref_2object(\&$glob)->GV->LINE;
    $glob->();