Help for this page

Select Code to Download


  1. or download this
    $foo = 'foo';
    sub printfoo { print $foo; }
    ...
      printfoo();           # prints 'bar'
    }
    printfoo();             # prints 'foo'
    
  2. or download this
    $foo = 'foo';
    sub printfoo { print $foo; }
    ...
      $foo = $hidden_foo;
    }
    printfoo()                  #prints 'foo'