I am not sure if and what difference it makes if a start a perl module with
package MYPACKAGE;
use 5.12.0;
use warnings;
# functions are here
1;
or
use 5.12.0;
use warnings;
package MYPACKAGE;
# functions are here
1;
or if these use ...
are not regarded at all because the use ...
are inherited from the calling perl script.
The question probably boils down to: is it worthwile to specify those use ...
in a module or is it sufficient if I have them specified in my perl script.