
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 …
What's so great about Lisp? - Stack Overflow
2010年1月10日 · 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 …
What makes Lisp macros so special? - Stack Overflow
2008年11月6日 · 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
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).
Using Lisp in C# - Stack Overflow
2015年3月18日 · Clojure is a Lisp-1 that is compiled on-the-fly to Java bytecode, leading to very good runtime performance. You can use Clojure, and cross-compile it to a .NET assembly using IKVM 's …
When to use ' (or quote) in Lisp? - Stack Overflow
2017年9月5日 · 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 …
How do I get a common-lisp GUI in Windows? - Stack Overflow
2009年1月16日 · It is a different dialect of LISP than the Common-Lisp I was using, but seems to have a lot of community support, and integrates with my Windows installation of Emacs either through …
Difference between `set`, `setq`, and `setf` in Common Lisp?
2009年5月15日 · 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 …
Lisp - Splitting Input into Separate Strings - Stack Overflow
Lisp - Splitting Input into Separate Strings Asked 13 years ago Modified 2 years, 5 months ago Viewed 28k times