- or download this
# test.pl
use warnings;
use strict;
...
funcA();
funcB();
funcC();
- or download this
# Include.pm
use myA;
...
use myC;
1;
- or download this
package myA;
use base 'Exporter';
...
}
1;
- or download this
package myB;
use base 'Exporter';
...
}
1;
- or download this
package myC;
use base 'Exporter';
...
}
1;
- or download this
funcA at myA.pm line 7.
funcB at myB.pm line 7.
funcC at myC.pm line 7.