- or download this
use warnings;
use integer; # makes no difference
...
print $string2, "\n";
# prints 144115188075868224 ... wrong
- or download this
use warnings;
use integer; # makes no difference
...
print $num, "\n";
#prints 1.44115188075868e+017
- or download this
$string =~ s/\.//;
$string =~ s/e/crap//i;