From ... From: Erik Naggum Subject: Re: [Q]: Recursion help Date: 2000/01/23 Message-ID: <3157638343605377@naggum.no>#1/1 X-Deja-AN: 576575073 References: <5ijj8s81rcin4hbjdluphtovcoveu50gh7@4ax.com> <3889DB11.E4A5AA49@fisec.com> mail-copies-to: never Content-Type: text/plain; charset=us-ascii X-Complaints-To: newsmaster@eunet.no X-Trace: oslo-nntp.eunet.no 948651486 17841 195.0.192.66 (23 Jan 2000 18:18:06 GMT) Organization: Naggum Software; +47 8800 8879 or +1 510 435 8604; fax: +47 2210 9077; http://www.naggum.no User-Agent: Gnus/5.0802 (Gnus v5.8.2) Emacs/20.5 Mime-Version: 1.0 NNTP-Posting-Date: 23 Jan 2000 18:18:06 GMT Newsgroups: comp.lang.lisp * Dirt | >Here's something to try for you with your implementation: | > | >> (eq 7391827918273091 7391827918273091) | >NIL | >> (eq 2.0 2.0) | >NIL | >> | | Yea, I tried that out and it didn't work just like you said. Thanks | for pointing this out to me guys. note that (EQL 2.0 2.0) => T, but (EQL 2 2.0) => NIL. #:Erik