On May 10, 6:16 pm, Paul Lalli <mri...@gmail.com> wrote:
> None. It's a concept you're missing. v5.8.8 *IS* 5.008008. Two
> different expansions of the same value.
>
> See also: perldoc perlvar (the $^V variable), and perldoc -f require
Perhaps this output will make that more explicit for you:
$ /usr/bin/perl -wle'print for sprintf("%vd", $^V), $]'
5.8.4
5.008004
$ /usr/local/bin/perl -wle'print for sprintf("%vd", $^V), $]'
5.8.5
5.008005
C:\>perl -wle"print for sprintf('%vd', $^V), $]"
5.8.8
5.008008
Paul Lalli
|