Common Lisp Programming Language

From GM-RKB
(Redirected from Common Lisp)
Jump to navigation Jump to search

A Common Lisp Programming Language is a Lisp Programming Language that ...



References

2015

  • (Wikipedia, 2015) ⇒ http://en.wikipedia.org/wiki/Common_Lisp Retrieved:2015-1-14.
    • Common Lisp (CL) is a dialect of the Lisp programming language, published in ANSI standard document ANSI INCITS 226-1994 (R2004) (formerly X3.226-1994 (R1999)). [1] From the ANSI Common Lisp standard the Common Lisp HyperSpec has been derived [2] for use with web browsers. Common Lisp was developed to standardize the divergent variants of Lisp (though mainly the Maclisp variants) which predated it, thus it is not an implementation but rather a language specification. [3] Several implementations of the Common Lisp standard are available, including free and open source software and proprietary products. [4]

      Common Lisp is a general-purpose, multi-paradigm programming language. It supports a combination of procedural, functional, and object-oriented programming paradigms. As a dynamic programming language, it facilitates evolutionary and incremental software development, with iterative compilation into efficient run-time programs. This incremental development is often done interactively without interrupting the running application.

      It also supports optional type annotation and casting, which can be added as necessary at the later profiling and optimization stages, to permit the compiler to generate more efficient code. For instance, fixnum can hold an unboxed integer in a range supported by the hardware and implementation, permitting more efficient arithmetic than on big integers or arbitrary precision types. Similarly, the compiler can be told on a per-module or per-function basis which type safety level is wanted, using optimize declarations.

      Common Lisp includes CLOS, an object system that supports multimethods and method combinations.

      Common Lisp is extensible through standard features such as Lisp macros (code transformations) and reader macros (input parsers for characters).

  1. Quoted from cover of cited standard. ANSI INCITS 226-1994 (R2004), for sale on standard's document page.
  2. Authorship of the Common Lisp HyperSpec
  3. Common Lisp HyperSpec 1.1.2 History
  4. Common Lisp Implementations: A Survey