[Haskell-cafe] Re: Why purely in haskell?

Miguel Mitrofanov miguelimo38 at yandex.ru
Fri Jan 11 04:47:55 EST 2008


> However, the fact that (0 / 0) == (0 / 0) yields False is quite shocking.

Just for the record: the following is from Firebug (JavaScript debugger for Firefox) session:

>>> a = 0/0
NaN
>>> a == a
false
>>> a === a
false


More information about the Haskell-Cafe mailing list