
What is lisp used for today and where do you think it's going?
Lisp is used in many applications, but mostly not the way CS students learn it. They use Lisp for basic CS concepts. Real Lisp software often looks different. More macros, more object …
artificial intelligence - Why is Lisp used for AI? - Stack Overflow
Apr 9, 2012 · Common Lisp was never intended to be the AI language, it was created to be used in the industry. For research, Scheme is usually used. And never, ever judge a language by its …
Lisp: list vs S-expression - Stack Overflow
May 27, 2012 · But with Lisp and lists, things get a little trickier because everything in a Lisp program is technically a list. For example, consider this expression: (+ 1 2) The above is a …
What is the difference between Lisp-1 and Lisp-2? - Stack Overflow
Jan 2, 2011 · I have tried to understand the difference between Lisp-1 and Lisp-2 and how this relates to Clojure but I still do not understand properly. Can anyone enlighten me?
syntax - What does # mean in LISP - Stack Overflow
Feb 2, 2011 · Often Lisp users develop embedded languages and to make that a bit easier, the Common Lisp standard tries to keep character usage down to a minimum and also provides …
What's the difference between ' and #' in Lisp? - Stack Overflow
Feb 5, 2011 · What's the difference between ' and #' in Lisp? Asked 14 years, 1 month ago Modified 8 years, 2 months ago Viewed 1k times
lisp - What is an S-Expression - Stack Overflow
Oct 23, 2022 · Code in any language that amount to a value is an expression. Lisp code is just lists with elements, a fundmental datastructure in lisp, however the plan was to use a syntax …
scheme - What's the best way to learn LISP? - Stack Overflow
Ansi Common Lisp by Paul Graham is a good book. I think it might be out of print, so your best bet to get it via Amazon. I got the book for a "Natural Language Processing" class I took my …
Newest 'lisp' Questions - Stack Overflow
I am a beginner lisp programmer, and I'm following the Practical Common Lisp book, specifically chapter 9. After finishing the chapter, I've tried to expand the unit-testing environment.
What's the difference between eq, eql, equal and equalp, in …
Feb 13, 2009 · 94 From Common Lisp: Equality Predicates (eq x y) is true if and only if x and y are the same identical object. The eql predicate is true if its arguments are eq, or if they are …