Help for this page

Select Code to Download


  1. or download this
    An "our" declaration declares a global variable that will be visible a
    +cross its entire lexical scope, even across package
    boundaries.
    
  2. or download this
    package A;
    package B;
    ...
    package D;
    # now you have to use the package name to access the var
    print $B::d;