in reply to How to use a bunch of uses with just one use?
# obligigatory.pm # all my uses, which I needed in the other files # no package marker use strict; use warnings; use foo::bar; 1;
Be aware that strict and warnings are compiler directives which apply to the current scope only, be that eval, block or file.
|
|---|