
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 …
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 …
How can I use Lisp in Autocad 2024 to extract block attributes and save ...
May 30, 2023 · I am looking to utilise Lisp in Autocad 2024 to extract block attributes and save into Excel file to save time. Autocad 2024 supports Lisp but DATAEXTRACTION. Thank you in advance for …
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 …
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 …
Newest 'common-lisp' Questions - Stack Overflow
Jan 14, 2026 · The Common Lisp standard includes bit arrays and logical operations on them, such as bit-ior, bit-and,... What the standard does not seem to offer is logical shifting of bit arrays.
creating list of ascending numbers in Common Lisp [duplicate]
Apr 21, 2023 · I just want to make a simple program in c-lisp; take in a number and return a list of all the numbers from 0 to that number. I'm relatively new to lisp and I'm curious how someone more …
common lisp - Recognizing local project / defining system with ...
Feb 5, 2024 · A Common Lisp package is a namespace. A package name is case sensitive and usually uppercase. Thus using a string means to use the actual case sensitive name. A system is something …