- or download this
package A;
use vars qw{$VERSION @ISA @EXPORT @EXPORT_OK};
require Exporter;
...
}
1;
- or download this
#!/usr/bin/perl -Tw
use lib 'where/a/pm/resides';
use strict;
...
a;
exit;
- or download this
package B;
use vars qw{$VERSION @ISA @EXPORT @EXPORT_OK};
require Exporter;
...
}
1;
- or download this
#!/usr/bin/perl -Tw
use lib 'where/a/pm/resides';
use strict;
...
b;
exit;