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.

perl -le'print map{pack c,($-++?1:13)+ord}split//,ESEL'