Help for this page

Select Code to Download


  1. or download this
      sub A {
        local $x = 3;
    ...
      my $x = 2;
    
      print &A; #prints 3 not 2
    
  2. or download this
      sub A {
        $x = 3;
    ...
      my $x = 2;
    
      print &A;