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).

Replies are listed 'Best First'.
Re^3: Okay! What!?!?!?
by Anonymous Monk on Apr 24, 2014 at 02:25 UTC
    He said "programming language," not multi-decade performance art. COBOL has users.