- or download this
package a::b;
require Exporter;
...
sub qux{ print 'Qux?!' }
1;
- or download this
package a::b::c;
use a::b qw[ :all ];
...
sub sensible{ print 'sensible' }
1;
- or download this
#! perl -slw
use a::b::c qw[ :all ];
...
qux();
sensible();
- or download this
c:\test>importer
fooey|
Baaa!
Qux?!
sensible