Considering the size of the module 15 is few. Besides there are resonable uses from globals and there are the unreasonable ones. In this case it's just some configuration variables, nothing that keeps changing and needs to be worried about.
I'll go out on a limb and say that a talented and experienced programmer would get the job done faster if he didn't use strict, assuming he learned that way or has an equal amount of experience both ways.
And here is where most of monks doesn't agree. At least if the task is something that will take more than 20 lines of code. But it's hard to give you a hard evidence since all talented and experienced programmers with equal experience both ways use strict whenever they can and only turn it off if they need to do something spicy.
In some other node you said it's easy to devise a new variable name and scan the script to make sure it's really not being used yet. Isn't it even easier not to have to do that? And is not
foreach my $line (something) {
easier to write and read than
foreach $lineIuseHereAndOnlyHere (something) {
? I use lexicals so I don't have to care whether there is another variable with the same name in a different part of the code. I use lexicals so I can take a piece of code and copy it somewhere without worrying that the two copies will overwrite each others stuff. I use lexicals.
Jenda
Always code as if the guy who ends up maintaining your code
will be a violent psychopath who knows where you live.
-- Rick Osborne