
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 …
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 (m-expressions) …
lisp - Add Mtext with properties assigned - Stack Overflow
Nov 18, 2023 · Instead of using a command call, use either entmake or entmakex with an appropriate DXF data list - that way, you can supply the relevant DXF group value for Text Style, Colour, Text …
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 …
Why should I learn Lisp? [closed] - Stack Overflow
Jan 17, 2017 · I really feel that I should learn Lisp and there are plenty of good resources out there to help me do it. I'm not put off by the complicated syntax, but where in "traditional commercial …
lisp - AutocadLisp - let variable argument definition mistaken as e ...
Mar 4, 2025 · I've never used LISP before and I'm using AI to try to create simple automations for autocad so I can speedup the process. Everything works fine to the point where I have a let …
Newest 'lisp' Questions - Stack Overflow
Dec 9, 2025 · [lisp] The name Lisp derives from "LISt Processing". Sign up to watch this tag and see more personalized content Watch tag Go to Wiki 7,047 questions Newest Active
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 straightforward S …