Name: Anonymous 2008-10-04 15:00
HUHL????
compare `make sense'. However, in this case, they don't, because we are comparing with NaN, and, as per IEEE 754 (I think):Hugs> 1/0 > 0/0
False
Hugs> 0/0 > 1/0
False
Hugs> 0/0 == 0/0
False
Hugs> 0/0 < 0/0
False
Hugs> 0/0 > 0/0
Falseif(f == f) is a common way of testing for NaN.