in reply to use strict; before/after use warnings;
use strict, warnings; use strict && warnings; use for (strict, warnings); # no not reallyThe only thing I found was a replacement for strict:
use 5.12.0; # <- turns on strict use strict; # <- but same length :-(
|
---|
Replies are listed 'Best First'. | |
---|---|
Re^2: use strict; before/after use warnings;
by haukex (Archbishop) on Nov 07, 2019 at 07:47 UTC | |
by choroba (Cardinal) on Nov 07, 2019 at 09:03 UTC | |
by Tux (Canon) on Nov 07, 2019 at 12:47 UTC | |
by haukex (Archbishop) on Nov 07, 2019 at 19:22 UTC | |
by afoken (Chancellor) on Nov 08, 2019 at 21:55 UTC |