We are still actively working on the spam issue.
Difference between revisions of "Lisp"
(Created page with "'''Lisp''' is a programming language originally created by John McCarthy in 1958. Despite its age, it is still a popular choice for modern programmers. Lisp has proven itself ...") |
m |
||
Line 3: | Line 3: | ||
Lisp comes in different dialects, which are divided into different implementations. Three important dialects are Common Lisp, Emacs Lisp, and Scheme. | Lisp comes in different dialects, which are divided into different implementations. Three important dialects are Common Lisp, Emacs Lisp, and Scheme. | ||
− | == Common Lisp == | + | ==Dialects== |
− | + | === Common Lisp === | |
− | == Emacs Lisp == | + | === Emacs Lisp === |
Emacs Lisp is used to script Emacs. Programmers who swear by Emacs should learn to use Emacs Lisp. | Emacs Lisp is used to script Emacs. Programmers who swear by Emacs should learn to use Emacs Lisp. | ||
− | + | === Scheme === | |
− | == Scheme == | ||
Scheme, created by Guy L. Steele and Gerald Jay Sussman, is the dialect used in SICP. | Scheme, created by Guy L. Steele and Gerald Jay Sussman, is the dialect used in SICP. | ||
− | Two of the most popular implementations are Chicken and GNU Guile. | + | Two of the most popular implementations are Chicken and GNU Guile, both of which include a developed C API. |
[[Category:Programming languages]] | [[Category:Programming languages]] |
Revision as of 03:22, 7 March 2014
Lisp is a programming language originally created by John McCarthy in 1958. Despite its age, it is still a popular choice for modern programmers. Lisp has proven itself flexible enough to evolve to meet the needs of modern programmers. Modern implementations often come "batteries-included", meaning that the programmer has access to powerful libraries for databases, regular expressions, networking, and more.
Lisp comes in different dialects, which are divided into different implementations. Three important dialects are Common Lisp, Emacs Lisp, and Scheme.
Dialects
Common Lisp
Emacs Lisp
Emacs Lisp is used to script Emacs. Programmers who swear by Emacs should learn to use Emacs Lisp.
Scheme
Scheme, created by Guy L. Steele and Gerald Jay Sussman, is the dialect used in SICP.
Two of the most popular implementations are Chicken and GNU Guile, both of which include a developed C API.