Now that I have your attention, what I mean is this:
use 5.6.0;
The 'use VERSION' syntax only became available in 5.6 -- older versions of Perl won't even compile it to report a proper error about the perl version. Update: ikegami pointed out that 'use VERSION' is older -- only the dotted-numeric part is 5.6 or later.
$ perl555 -e 'use 5.6.0' syntax error at -e line 1, near "use 5.6" Execution of -e aborted due to compilation errors.
Moreover, it uses the dotted-numeric form that older Perl's don't understand.
$ perl555 -e 'require 5.6.0' Can't locate 5.60 in @INC (@INC contains ...[snip]...) at -e line 1.
Instead, use one of these:
require 5.006; # run-time BEGIN { require 5.006; } # compile-time
These do what you want.
$ perl555 -e 'require 5.006' Perl 5.006 required--this is only version 5.00505, stopped at -e line +1.
If you're writing modules for others to use (e.g. CPAN), and need a minimum perl version, put a 'require 5.006' (or whatever version you need) at the top of your Makefile.PL or Build.PL. This will die with a useful error message before the Makefile or Build file is created. Moreover, CPAN Testers clients like CPANPLUS and CPAN::Reporter will recognize the error message and file an 'NA' report instead of a 'FAIL' report.
I wonder if there is a Perl::Critic policy about this. If not, there should be.
-xdg
Code written by xdg and posted on PerlMonks is public domain. It is provided as is with no warranties, express or implied, of any kind. Posted code may not have been tested. Use of posted code is at your own risk.
In reply to Don't use 5.6.N by xdg
| For: | Use: | ||
| & | & | ||
| < | < | ||
| > | > | ||
| [ | [ | ||
| ] | ] |