[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [Scheme-reports] Strong win later reversed: Real numbers have imaginary part #e0





On Fri, Dec 21, 2012 at 5:07 PM, leppie <xacc.ide@x> wrote:
(let ((x +0.0)
      (y -0.0))
  (map (lambda (op)
          (list (op x y) (op x y)))
       (list = > <)))
    => ((#t #t) (#f #f) (#f #f))


Sorry the above snippet should be:

(let ((x +0.0)
      (y -0.0))
  (map (lambda (op)
          (list (op x y) (op y x)))
       (list = > <)))

:o)

--
http://codeplex.com/IronScheme
http://xacc.wordpress.com
_______________________________________________
Scheme-reports mailing list
Scheme-reports@x
http://lists.scheme-reports.org/cgi-bin/mailman/listinfo/scheme-reports