Help for this page

Select Code to Download


  1. or download this
    c:\@Work\Perl\monks>perl -wMstrict -le
    "{ package Foo;
    ...
       }
    "
    fully qualified: 12345
    
  2. or download this
    package Foo {
        our $test = 12345;
    ...
    package Bar {
        print 'fully qualified: ', $Foo::test;
        }