More stuff found while cleaning old files:
Perl acquired bignums and smart string/int conversion. I had written an
introduction to perl using these two examples:
my $million = "1" . "0" x 6; # Produces the string "1000000"
$million += 1; # Results in "1" because the string resolves to zero.
As of version 5.8.8, it produces "1000001".
One of
(
Read more... )