Help for this page

Select Code to Download


  1. or download this
    use strict;
    use warnings;
    ...
    use $file;
    print "I am in the main package\n";
    SomeModule::func();
    
  2. or download this
    package SomeModule;
    use strict;
    ...
        }
    
        1;