taint has asked for the wisdom of the Perl Monks concerning the following question:
as stated, this translates to:use Modern::Perl 2011;
Seems reasonable. I'm useing 5.12.5, and I always use warn.use 5.012; # implies "use strict;" use warnings;
Of course I'll reaquaint myself with the Modern::Perl docs. But just thought I'd mention it here, as it is quite unexpected.Modern::Perl version 2011 required--this is only version 1.03
#!/usr/bin/perl -Tw use perl::always; my $perl_version = "5.12.5"; print $perl_version;
|
|---|