% guile
guile> (= (+ 0.1 0.2) 0.3)
#f
[1] - https://www.gnu.org/software/guile/ scheme@(guile-user)> (= (+ 1/10 2/10) 3/10)
$1 = #t $ perl6
> 0.1 + 0.2 == 0.3
True
> (0.1 + 0.2).perl
3/10
For perl5 you must use the bigrat pragma: $ re.pl
> 0.1 + 0.2 != 0.3
1
> use bigrat;
> 0.1 + 0.2 == 0.3
1
ref: http://perldoc.perl.org/bigrat.htmlSometimes decimal notation is the most natural, and sometimes you're copying numbers in decimal notation out of a book, wikipedia, or some other publication.
(Spoiler alert: the answer is that the addition is done at compile time rather than run time.)
Here is one such instance. http://www.yuiblog.com/blog/2009/03/10/when-you-cant-count-o...
He has been on a crusade to introduce a decimal based floating point standard because he believes it is finally time we revisit this decision to use binary floating point.
Edit: spelling