in reply to Re^2: use strict; before/after use warnings;
in thread use strict; before/after use warnings;
This might be an interesting topic for the 'Voting Booth'.++ I was thinking the same thing. You can submit your idea here if you want. Although since you can also have an implicit strict by selecting a version, and use the shebang options to enable warnings that's a lot of different ways to do basically the same thing.
#!/usr/bin/perl -W # warnings enabled globally on previous line use v5.20; # implicit use strict; use strict; # No impact use warnings; # No impact
Personally it's always strict then warnings (in that order), sometimes preceded by the version (I always have an explicit strict even when implicitly activated).
Edit: whoops, choroba already submitted the poll idea
|
---|
Replies are listed 'Best First'. | |
---|---|
Re^4: use strict; before/after use warnings;
by msh210 (Monk) on Nov 06, 2019 at 15:37 UTC |