Whats so great about Lisp? - Stack Overflow Lisp is the Chuck Norris of programming languages Lisp is the bar other languages are measured against Knowing Lisp demonstrates developer enlightenment I've heard of 3 weaknesses (and their counter-arguments): Dynamic typing
What is lisp used for today and where do you think its going? Actually Common Lisp is not only the extension language, but large parts of the application are written in Common Lisp (plus some C++) Other than that Lisp is a family of diverse dialects with diverse implementations (Scheme, Common Lisp, Emacs Lisp, Visual Lisp, Clojure, Logo, ) and several others Strengths are for example:
syntax - What does # mean in LISP - Stack Overflow The reason is because Common Lisp tries to be economical with character usage in the language and leaves characters like [, ], {and } to the user for his her own syntax extensions 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
lisp - What is an S-Expression - Stack Overflow 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) more similar to Java and Python, but the initial version just evaluated the code in data form and that was called s-expressions s-expressions make a structured tree very similar to the tree sturcture a
Easy ways to try out and test Lisp syntax? - Stack Overflow If you just want to play with LISP, interactively, quickly, GNU Emacs has a LISP interpreter built in, and listening in the *scratch* buffer Type an S-expression, position immediately after it, and then hit Ctrl-J to evaluate it Or <ESC>: will put an Eval: prompt in the minibuffer, accept an S-expression, and evaluate it
Why should I learn Lisp? [closed] - Stack Overflow Lisp is a large and complex language with a large and complex runtime to support it For that reason, Lisp is best suited to large and complicated problems Now, a complex problem isn't the same as a complicated one A complex problem is one with a lot of small details, but which isn't hard Writing an airline booking system is a complex
scheme - Definition of lisp form? - Stack Overflow I'm afraid that lisp datum is not correct wording, as datum in Lisp is defined as 'An a-list is a list of pairs, the car of a pair is called the key, and the cdr is called datum' from p431 Common Lisp 2nd edition –