
What's so great about Lisp? - Stack Overflow
Jan 10, 2010 · I don't know enough Lisp to say whether it's good or bad. It seems like everyone who has used Lisp loves it, yet the most popular languages these days are descended from C. So what is it …
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 sophomore year in …
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-oriented, more …
When to use ' (or quote) in Lisp? - Stack Overflow
Sep 5, 2017 · Lisp symbols can double both as their values, and markers where you in other languages would have used strings, such as keys to hash tables. This is where quote comes in. Say you want …
Newest 'lisp' Questions - Stack Overflow
Dec 9, 2025 · So in Lisp/Scheme, there are these 'symbols', which are basically, if I understand correctly, and correct me if I'm wrong, references to variables (not their values).
Difference between `set`, `setq`, and `setf` in Common Lisp?
May 15, 2009 · If SET and SETQ are to be booted from a Common Lisp successor, they will have to get some replacement. Their use in high-level code is limited, but low-level code (for example, the code …
lisp - Return list from a function - Stack Overflow
Oct 3, 2020 · I am new to LISP and was wondering how to return a list from a function. I need to write a function that takes a list as an input and outputs a list. If first and last elements are even numbers: re...
What are the differences between Clojure, Scheme/Racket and …
Jun 27, 2012 · Common Lisp has gotten extensive libraries in the past five years (thanks mostly to Quicklisp), Scheme has some modern implementations (Racket, Chicken, Chez Scheme, etc.), and …
What exactly is a symbol in lisp/scheme? - Stack Overflow
Oct 25, 2017 · Lisp/Scheme/Racket makes that really easy, because the language already has a built-in correspondence between identifiers (part of the language's syntax) and symbols (values in the …
Can I use Common Lisp for SICP or is Scheme the only option?
Jul 21, 2009 · Using SICP with Common Lisp is possible and fun You can use Common Lisp for learning with SICP without much problems. The Scheme subset that is used in the book is not very …