##
# MyMod/db.pm
use strict;
use warnings;
package MyMod::db;
use MyMod; # imports MYMOD_DEFAULT automatically
sub fred {
print "hello" if (MYMOD_DEFAULT);
}
1;
####
# fred.pl
use strict;
use warnings;
use MyMod::db;
MyMod::db::fred(); # fully qualified call
####
hello