http://www.perlmonks.org?node_id=1083275


in reply to Re: Okay! What!?!?!?
in thread Okay! What!?!?!?

Clearly, this is just a prototypical example of why you can never (in any programming language other than COBOL) test a fractional number for “exact equality.”

Only if by "fractional number" you actually mean floating-point number. It works fine with actual fractional numbers:

$ perl6 -e 'say 10 + 14.4 - 10 == 14.4' True

(Perl 6 stores those as actual fractions, and does exact math with them; you only get floating points if the fractions overflow, or if you request them with the scientific notation 14.4e0).