Global web icon
stackoverflow.com
https://stackoverflow.com/questions/398579/whats-t…
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 college. We had to write the programing projects in LISP, and so I needed to learn Lisp quickly. The book helped me quite a bit.
Global web icon
stackoverflow.com
https://stackoverflow.com/questions/2036244/whats-…
What's so great about Lisp? - Stack Overflow
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 about Lis...
Global web icon
stackoverflow.com
https://stackoverflow.com/questions/4724/why-shoul…
Why should I learn Lisp? [closed] - Stack Overflow
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 programming"
Global web icon
stackoverflow.com
https://stackoverflow.com/questions/794450/what-is…
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 imperative, lots of low-level stuff, ...
Global web icon
stackoverflow.com
https://stackoverflow.com/questions/134887/when-to…
When to use ' (or quote) in Lisp? - Stack Overflow
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 to plot resource allocations from a Python application, but rather do the plotting in Lisp. Have your Python app do something like this:
Global web icon
stackoverflow.com
https://stackoverflow.com/questions/4873810/what-d…
syntax - What does # mean in LISP - Stack Overflow
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 mechanism of macro characters and dispatch macro characters.
Global web icon
stackoverflow.com
https://stackoverflow.com/questions/1614724/is-lea…
Is learning LISP useful at all these days? - Stack Overflow
The general Lisp idea is the same for Common Lisp or Scheme or Emacs Lisp or Clojure, but the specifics will be different - so keep that in mind if reading Graham's book, which focuses mostly on Common Lisp (with some mentions of Scheme specifics.)
Global web icon
stackoverflow.com
https://stackoverflow.com/questions/869529/differe…
Difference between `set`, `setq`, and `setf` in Common Lisp?
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 SETF is implemented in) needs them.
Global web icon
stackoverflow.com
https://stackoverflow.com/questions/4578574/what-i…
What is the difference between Lisp-1 and Lisp-2? - Stack Overflow
I have tried to understand the difference between Lisp-1 and Lisp-2 and how this relates to Clojure but I still do not understand properly. Can anyone enlighten me?
Global web icon
stackoverflow.com
https://stackoverflow.com/questions/130475/why-is-…
artificial intelligence - Why is Lisp used for AI? - Stack Overflow
Common Lisp was never intended to be the AI language, it was created to be used in the industry. For research, Scheme is usually used. And never, ever judge a language by its age - it just isn't proportional to coolness, and vice versa. C is old but cool, so why does Lisp's age matter?