axiom-developer
[Top][All Lists]
Advanced

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

Re: [Axiom-developer] The lisp function ONEP


From: David MENTRE
Subject: Re: [Axiom-developer] The lisp function ONEP
Date: Sat, 27 Sep 2003 12:34:30 +0200
User-agent: Gnus/5.1002 (Gnus v5.10.2) Emacs/21.2 (gnu/linux)

Hello Jaap,

Thank you for the pointer on Lisp performances. I have an iBook lying
around (under Linux), so I should probably have a look to SBCL. 

Jaap Weel <address@hidden> writes:

> With SBCL:
>
> * (= 1 1.0)
> T
> * (eq 1 1.0)
> NIL
> * (eql 1 1.0)
> NIL
> * (equal 1 1.0)
> NIL
> * (= 1 1)
> T
> * (eq 1 1)
> T
> * (eql 1 1)
> T
> * (equal 1 1)
> T

Same results with GCL 2.5.2:

GCL (GNU Common Lisp)  (2.5.2) Thu Mar 20 10:36:35 EST 2003
[...]

>(= 1 1.0)
T
>(eq 1 1.0)
NIL
>(eql 1 1.0)
NIL
>(equal 1 1.0)
NIL
>(= 1 1)
T
>(eq 1 1)
T
>(eql 1 1)
T
>(equal 1 1)
T

Yours,
d.
-- 
 address@hidden




reply via email to

[Prev in Thread] Current Thread [Next in Thread]