Help for this page

Select Code to Download


  1. or download this
    for ( "read", "only", "value" ) {
        print "$_\n";
        $_ = "test"; # blows up
    }
    
  2. or download this
    sub foo { $_ = "test"; }
    
    ...
        print "$_\n";
        foo(); # blows up
    }