How come "use MODULE VERSION;" works sometimes and not others?

In this case:

$ perl -mstrict -we 'use CGI 3.12;print "$CGI::VERSION\n";'
CGI version 3.12 required--this is only version 3.11 at -e line 1.
BEGIN failed--compilation aborted at -e line 1.
$ perl -mstrict -we 'use File::Copy::Recursive 0.15;print "$File::Copy::Recursive::VERSION\n";'
0.14
$

Very odd...

is it the 0.nn ? if so thats weird because that is what h2xs starts with by default 0.01

--
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
<http://learn.perl.org/> <http://learn.perl.org/first-response>


Reply via email to