- or download this
# MyMod.pm
use strict;
...
our @EXPORT = qw( MYMOD_DEFAULT ); # No extra parens needed
1;
- or download this
# MyMod/db.pm
use strict;
...
}
1;
- or download this
# fred.pl
use strict;
...
use MyMod::db;
MyMod::db::fred(); # fully qualified call
- or download this
hello