
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 …
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 …
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 …
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 …
Difference between `set`, `setq`, and `setf` in Common Lisp?
May 15, 2009 · Originally, in Lisp, there were no lexical variables -- only dynamic ones. And there was no SETQ or SETF, just the SET function. What is now written as:
What makes Lisp macros so special? - Stack Overflow
Nov 6, 2008 · But Lisp is different. Lisp macros do have access to the parser, and it is a really simple parser. A Lisp macro is not handed a string, but a preparsed piece of source code in the form of a …
Newest 'lisp' Questions - Stack Overflow
Dec 9, 2025 · The name Lisp derives from "LISt Processing". Sign up to watch this tag and see more personalized content
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 the …
Are there any Common Lisp implementations for .Net?
Sep 21, 2008 · There are bigger issues, for example common lisp has a more powerful object system, so you can't map it 1:1 to object in the runtime (no MI, for one). This is ok, but leaves you with an …
Does there exist standard way to run external program in Common Lisp?
Oct 11, 2011 · No, there is no standard way, but there are libraries which provide this functionality for the important implementations. For example, there's trivial-shell available in Quicklisp, which provides …