Help for this page

Select Code to Download


  1. or download this
       package Foo;
       use strict;
    ...
         print "Foo\n";
       }
       1;
    
  2. or download this
       package Bar;
       use strict;
    ...
        print "Bar\n";
       }
       1;
    
  3. or download this
     package Something;
     use strict;
    ...
     ....
     Foo::foo;
     1;