Help for this page

Select Code to Download


  1. or download this
    strict refs 
    
    ...
        &$bar;
    
    is allowed so that goto &$AUTOLOAD would not break under stricture.
    
  2. or download this
    >perl -Mstrict -e "sub walk {} sub run {} my $walkable = defined(&{'wa
    +lk'}); my $runnable = &{'run'};"
    Can't use string ("run") as a subroutine ref while "strict refs" in us
    +e at -e line 1.