Hi Bill, On Mon 07 Jun 2010 16:00, "Bill Schottstaedt" <[email protected]> writes:
> I just noticed a case where -0.0 is apparently negative: > > scheme@(guile-user)> (/ 1.0 -0.0) > -inf.0 > scheme@(guile-user)> (negative? -0.0) > #f Interesting. R5RS seems to be mute on negative zeros. The behavior of negative? is correct according to R6RS, and the result (/ 1.0 -0.0) follows IEEE 754, I think; so while odd, it does not seem to be a bug. Let me know if I'm missing something here. > scheme@(guile-user)> (expt #t 0) > 1 Haha, that's amusing :) Will fix. Andy -- http://wingolog.org/
