Help for this page

Select Code to Download


  1. or download this
    # $foo and $bar are not accessable outside of this scope
    {
    ...
    sub DoSomething {
      print "$foo $bar\n";
    }
    
  2. or download this
    # $foo and $bar are not accessable outside of this scope
    {
    ...
        print "$foo $bar\n";
      }
    }