newLISP Fan Club

Forum => Anything else we might add? => Topic started by: nigelbrown on August 11, 2004, 07:55:18 AM

Title: common lisp live cd
Post by: nigelbrown on August 11, 2004, 07:55:18 AM
Lispers may be interested in this live CD linux with common lisp bundled:

http://www.common-lisp.net/project/lisp-res-kit/



Nigel
Title:
Post by: Lutz on August 11, 2004, 10:52:04 AM
I have a new page on http://newlisp.org/index.cgi?FAQ , (not integrated yet into the menu) It talks also about the philosophical differences between Common Lisp and newLISP in the second paragraph:  "Why newLISP, why not one of the other standard LISPs ?" .



This is a very sensitive topic and dealt with often with 'religous' passion. I respect all other LISPs very much, but of course I feel very strongly about the 'newLISP way' as it's author.



Feedback and English improvements are appreciated



Lutz
Title:
Post by: BrickCaster on August 11, 2004, 11:19:55 AM
"benchmarks" and "unique memory management" are interesting insights :)
Title: Differences_to_Other_LISPs claryfication.
Post by: tichy on October 20, 2005, 01:18:01 AM
Quote from: "Lutz"I have a new page on http://newlisp.org/index.cgi?FAQ , (not integrated yet into the menu) It talks also about the philosophical differences between Common Lisp and newLISP in the second paragraph:  "Why newLISP, why not one of the other standard LISPs ?" .

Lutz


from: http://newlisp.org/index.cgi?page=Differences_to_Other_LISPs



-------

VII.

'nil' and 'true' are boolean constants in newLISP. In Common Lisp and

Scheme they have an additional role as list terminator:



 ;; Common Lisp and Scheme

 (cons 'x nil) => (x)



 ;; newLISP

 (cons 'x nil) => (x nil)

-------



Not true for Scheme:



* scheme48

Welcome to Scheme 48 1.3 (made by root on Wed Aug 24 22:59:32 CEST 2005)

Copyright (c) 1993-2005 by Richard Kelsey and Jonathan Rees.

Get more information at http://www.s48.org/.



> (cons 'x nil)



Error: undefined variable

       nil



1> (cons 'x '())

'(x)



Scheme has separate notation for false (#f -- false, #t -- true),

and end of list '().



-------

X.

newLISP has only one operator for equality, the equal sign = in other

LISPs you may have 4, equal, eql, eq =, for expressions, symbols or

numbers, symbols and numbers.

........

-------



Common Lisp has more than 4:



eq, eql, equal, equalp, =, string=, string-equal, char=, char-equal.
Title:
Post by: Lutz on October 20, 2005, 05:38:42 AM
Thanks very much, I edited the page http://newlisp.org/index.cgi?page=Differences_to_Other_LISPs to reflect your clarifications.





Lutz



ps: ... and welcome to the newLISP forum