in reply to Re: Which pragmas are activated with a specific perl version?
in thread Which pragmas are activated with a specific perl version?
And taking the information from "Feature Bundles":
# no "use VERSION" is the same as: use feature qw/array_base/; use 5.010; # is the same as: use feature qw/say state switch array_base/; use 5.012; # is the same as: use strict; use feature qw/say state switch unicode_strings array_base/; use 5.014; # is the same as: use strict; use feature qw/say state switch unicode_strings array_base/; use 5.016; # is the same as: use strict; use feature qw/say state switch unicode_strings unicode_eval evalbytes current_sub fc/; use 5.018; # is the same as: use strict; use feature qw/say state switch unicode_strings unicode_eval evalbytes current_sub fc/; use 5.020; # is the same as: use strict; use feature qw/say state switch unicode_strings unicode_eval evalbytes current_sub fc/; use 5.022; # is the same as: use strict; use feature qw/say state switch unicode_strings unicode_eval evalbytes current_sub fc/; use 5.024; # is the same as: use strict; use feature qw/say state switch unicode_strings unicode_eval evalbytes current_sub fc postderef_qq/; use 5.026; # is the same as: use strict; use feature qw/say state switch unicode_strings unicode_eval evalbytes current_sub fc postderef_qq/;
Note the absence of warnings, as already pointed out by Eily.
|
---|
Replies are listed 'Best First'. | |
---|---|
Re^3: Which pragmas are activated with a specific perl version?
by adhrain (Sexton) on Mar 15, 2018 at 14:14 UTC | |
by haukex (Archbishop) on Mar 15, 2018 at 14:32 UTC |