On Fri, Dec 21, 2012 at 5:07 PM, leppie <[email protected]> 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
[email protected]
http://lists.scheme-reports.org/cgi-bin/mailman/listinfo/scheme-reports

Reply via email to