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