Help for this page

Select Code to Download


  1. or download this
    $a = 2; sub f { print $a; } { local $a = 5; f; }'
    
  2. or download this
    $a = 2; sub f { print $a; } for $a (5) { f; }