安裝中文字典英文字典辭典工具!
安裝中文字典英文字典辭典工具!
|
- 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:
- 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
- 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
- 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
- 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,
- 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,
- What makes Lisp macros so special? - Stack Overflow
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 list, because the source of a Lisp program is not a string; it is a list And Lisp programs are really good at taking apart lists and putting them back
|
|
|