I've seen several posts that state use 5.12.0;
in Perl enables certain features/pragmas by default (e.g., use strict;
). Another example is in UTF-8 and perl where it is stated that use 5.14.0;
is
optimal for Unicode string feature UTF-8 handling.
I seem to recall an available use
declaration that provides certain defaults (e.g., use strict; use warnings; use diagnostics;
), but can't remember the specifics. How does one find out what is included in a given use 5.##.#;
statement? For example, what does use 5.22.0;
provide by default? use strict;
?