Subject: Re: [Q]: Recursion help From: Erik Naggum <erik@naggum.no> Date: 2000/01/23 Newsgroups: comp.lang.lisp Message-ID: <3157638343605377@naggum.no> * Dirt <pip3@inam3.com> | >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