in reply to Re: Re: Re: Re: A C-like brain in a Perl-like world
in thread A C-like brain in a Perl-like world
BTW as Re: Strange (rounding?) problem points out, Perl often handles floats better if you use eq instead of == for testing equality...perl -e 'print "I cannot add" unless 19.08 + 2.01 == 21.09' perl -e 'print "I can'\''t add" unless 19.08 + 2.01 == 21.09'
|
|---|