in reply to use strict; before/after use warnings;
And is there any reason not to simply do this?
use strictures;
Not only does "strictures" turn on warnings, but also makes several of them fatal at the same time (though not the problematic ones.) I do this in all my code for $work since I know I am on a version of Perl that supports it.
|
---|
Replies are listed 'Best First'. | |
---|---|
Re^2: use strict; before/after use warnings;
by Your Mother (Archbishop) on Nov 09, 2019 at 03:20 UTC |