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
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
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:
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
Newest lisp Questions - Stack Overflow I am a beginner lisp programmer, and I'm following the Practical Common Lisp book, specifically chapter 9 After finishing the chapter, I've tried to expand the unit-testing environment Specifically,
scheme - Whats the best way to learn LISP? - Stack Overflow I'm a Common Lisp fan, but that may be one of those vi-vs-EMACS religious questions For Scheme, go for Kent Dybvig's Scheme Programming Language, followed by SICP For Common Lisp, as well as Practical Common Lisp, I'd recommend David Lamkins's Successful Lisp Successful Lisp is also available online for free
Lisp: list vs S-expression - Stack Overflow Today most Lisp program code is written using s-expressions This is described here: McCarthy, Recursive Functions of Symbolic Expressions In a Lisp programming language like Common Lisp nowadays s-expressions have more syntax and can encode more data types: Symbols: symbol123, |This is a symbol with spaces| Numbers: 123, 1 0, 1 3,
lisp - Difference between LET and SETQ? - Stack Overflow There are some not-quite duplicate questions on Stack Overflow that may, nonetheless, help in understanding the use of the various variable definition and assignment operators available in Common Lisp: setq and defvar in lisp; What's difference between defvar, defparameter, setf and setq; Assigning variables with setf, defvar, let and scope
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