in reply to Re: Errors in some perl modules
in thread Errors in some perl modules
You may also be using
#!perl -winstead of
#!perl use warnings;
The first turns on warnings in modules as well as in the main program. The second ignores, for better or worse, warnings in any included modules.
|
|---|