Help for this page

Select Code to Download


  1. or download this
    {
      package Foo;
    ...
      # can still see $foo here
    }
    # cannot see $foo any more
    
  2. or download this
    {
      package Foo;
    ...
      # $foo is still an alias for $Foo::foo here
    }
    # cannot see $foo any more