Name: Anonymous 2007-10-09 10:55
>>> 0.1
0.10000000000000001nuff said
>>> 0.1
0.10000000000000001
ben@~: ghci 21:06:47
___ ___ _
/ _ \ /\ /\/ __(_)
/ /_\// /_/ / / | | GHC Interactive, version 6.6.1, for Haskell 98.
/ /_\\/ __ / /___| | http://www.haskell.org/ghc/
\____/\/ /_/\____/|_| Type :? for help.
Loading package base ... linking ... done.
Prelude> 0.1 == 0.10000000000000001
True
Prelude> Leaving GHCi.
ben@~: sbcl 21:08:13
This is SBCL 1.0.9, an implementation of ANSI Common Lisp.
More information about SBCL is available at <http://www.sbcl.org/>;.
SBCL is free software, provided as is, with absolutely no warranty.
It is mostly in the public domain; some portions are provided under
BSD-style licenses. See the CREDITS and COPYING files in the
distribution for more information.
* (= 0.1 0.10000000000000001)
T
* %