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.

You must always remember that the primary goal is to drain the swamp even when you are hip-deep in alligators.
  • Comment on Re: use strict; before/after use warnings;

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

    I do just that. But opinions differ pretty widely and somewhat strongly. So… :P