in reply to Re^6: Perl logical operators
in thread Perl logical operators

Note that strict and warnings are lexical pragmas. It will only apply to the code or file you execute directly, not any included modules. This is a good thing; you don't want to have to fix bugs you introduced to code you didn't write. (This is also why -w and -W are the wrong approach.)

Replies are listed 'Best First'.
Re^8: Perl logical operators
by Anonymous Monk on Jul 10, 2019 at 22:59 UTC