Help for this page
# force numbers to strings before printing: $ perl -wMstrict -le 'print "".1e-3; print "".0.001; ... NV = 0.001 $ perl -wMstrict -MDevel::Peek -le 'Dump( 0x1.0624dd2f1a9fcp-10 )' NV = 0.001
$ perl -wMstrict -le ' if ( sprintf("%.3f",0.001) eq sprintf("%.3f",0.001001) ) { print "yes" } else { print "no" }' yes