...
This compliant solution uses the CPAN Bignum module to ensure precise computation. The Bignum module is available in CPAN, but became part of Perl's standard library for version 5.14.
Code Block | ||||
---|---|---|---|---|
| ||||
use bignum; my $x = 10000000000000000; # 1e+16 for (my $y = $x; $y <= $x + 5; $y += 1) { print "$y\n"; } |
...