Subject: | Recommended year specification syntax |
Is there a reason why the recommended way to specify a Modern::Perl version is as
use Modern::Perl '2014';
and not the unquoted
use Modern::Perl 2014;
The current recommended style clashes with a 'best practice' recommended by perlcritic, to use bare numbers not quoted numbers. Of course, if there is a good reason for the current style then it is perlcritic that needs fixing. Could you comment please?