From: Gregory Woodhouse (gregwoodhouse at me.com) Date: Mon Feb 14 15:59:11 EST 2011 |
|
It's a puzzle > (define (mymin a b) (if (< a b) a b)) > (mymin 0 1e100) 0 > (mymin 1e100 0) 0 > On Feb 14, 2011, at 12:47 PM, David Van Horn wrote: > Then what is the correct definition?
Posted on the users mailing list. |
|