in reply to Floating point issue

Hi,

consider this simple one-liner where the output should presumably be 0:

$ perl -e 'print .1 + .2 - .3, "\n"' 5.55111512312578e-17
A very small number, indeed, but not zero.

BTW, the same in the Perl 6 REPL:

> say .1 + .2 - .3 0