Common Lisp is a general-purpose programming language, in contrast to Lisp variants such as Emacs Lisp and AutoLISP which are embedded extension languages in particular products. Unlike many earlier Lisps, but like Scheme, Common Lisp uses lexical scoping for variables.
Common Lisp is a multi-paradigm programming language that:
Table of contents |
2 Data types 3 Implementations 4 External links |
; Define a function that squares a number
(defun square (x) (* x x))
; Execute the function
(square 3) ; Returns "9"
Syntax
Common Lisp is a Lisp; it uses S-expressions to denote both code and data structure. Function and macro calls are written as lists, with the name of the function first, as in these examples:(+ 2 2) ; adds 2 and 2, yielding 4
(setq pi 3.1415) ; sets the variable "pi" equal to 3.1415
Data types
Common Lisp has a plethora of data types, more than many languages.
Scalar types
Number types include integers, ratios, floating-point numbers, and complex numbers. Common Lisp uses bignums to represent numerical values of arbitrary size and precision. The ratio type represents fractions exactly, a facility not available in many languages. Common Lisp automatically coerces numeric values among these types as appropriate.
The Common Lisp character type is not limited to ASCII characters; unsurprising, as Lisp predates ASCII. Some modern implementations allow Unicode characters. [1]
The symbol type is common to Lisp languages, but largely unknown outside them. A symbol is a unique, named data object. Symbols in Lisp are similar to identifiers in other languages, in that they can be used as variables to hold values; however, they are more general and can be used for themselves as well. Boolean values in Common Lisp are represented by the reserved symbols T and NIL.
As in any other Lisp, lists in Common Lisp are composed of conses, sometimes called cons cells or pairs. A cons is a data structure of two elements, called its car and cdr. A list is a linked chain of conses wherein each cons's cdr points to the next element, and the last cdr points to the NIL value. Conses can also easily be used to implement trees and other complex data structures.
Hash tables store associations between data objects. Any object may be used as key or value. Hash tables, like arrays, are automatically resized as needed.
Packages are collections of symbols, used chiefly to separate the parts of a program into namespaces. A package may export some symbols, marking them as part of a public interface.
Structures, akin to C structs and Pascal records, represent arbitrary complex data structures with any number and type of fields (called slots).
For instance, the
(sort '((9 a) (3 b) (4 c)) #'(lambda (x y) (< (car x) (car y))))
; Returns ((3 b) (4 c) (9 a)), i.e. the list sorted by the first element
While a function definition (a
Macros allow Lisp programmers to create new syntactic forms in the language. For instance, this macro provides the
Some Lisp systems, such as Scheme, avoid variable capture by using macro syntaxes -- so-called "hygienic macros" -- which do not allow it. In Common Lisp, one can avoid unwanted capture by using gensyms -- guaranteed-unique symbols which can be used in a macroexpansion without threat of capture.
In addition, implementations tend to come with divergent sets of library packages, which provide functionality not covered in the standard. Some of these features have been rolled back into the standard, such as CLOS and the LOOP construct; others remain implementation-specific. Unfortunately, many valuable facilities for the modern programmer -- such as TCP/IP networking -- remain unstandardized.
It is a common misconception that Common Lisp implementations are all interpreters. In fact, compilation is part of the language specification. Most Common Lisp implementations compile functions to native machine code. Others compile to bytecode, which reduces speed but improves portability.
Some Unix-based implementations, such as CLISP, can be used as script interpreters.
Freely redistributable implementations include:
Data structures
Sequence types in Common Lisp include arrays, vectors, bit-vectors, and strings. Common Lisp supports multidimensional arrays, and can dynamically resize arrays as needed. Multidimensional arrays can be used for matrix mathematics.Functions
In Common Lisp, functions are a data type. For instance, it is possible to write functions that take other functions as arguments. This makes it possible to make very general operations.sort
function takes a comparison operator as an argument. This can be used not only to sort any type of data, but also to sort data structures according to a key.(sort '(5 2 6 3 1 4) #'>)
; Returns (6 5 4 3 2 1), using the > function as the comparison operator
Common Lisp is a Lisp-2, meaning that there are separate namespaces for defined functions and for variables. (This differs from, for instance, Scheme, which is a Lisp-1.) Lisp-2 has the advantage that a local variable name will never shadow a function name: One can call a variable cons
or even if
with no problems. However, to refer to a function variable one must use the #'
notation, as in the above examples.defun
form) is a list, functions are not generally internally represented as lists. Most Common Lisp systems compile functions individually to bytecode or machine code.Other types
Other data types in Common Lisp include:
Common Lisp also includes a toolkit for object-oriented programming, the Common Lisp Object System or CLOS.Macros
A macro in Lisp superficially resembles a function. However, rather than representing an expression which is evaluated, it represents a transformation of the program text within the macro call.until
loop form, which may be familiar from languages such as Perl:(defmacro until (test &rest body)
`(do ()
(,test)
,@body))
This differs from a function in that it can repeatedly evaluate its arguments. A function's arguments are evaluated only once, before the function is called; a macro controls its arguments' evaluation or other use in the macro-expansion.Variable capture
Common Lisp macros are capable of variable capture, a situation in which symbols in the macro-expansion body coincide with those in the calling context. Variable capture is sometimes a desired effect: it allows the programmer to create macros wherein various symbols have special meaning. However, it can also introduce unexpected and unusual errors.Implementations
Common Lisp is defined by a specification (like Ada and C) rather than by a single implementation (like Perl). There are many implementations, and the standard spells out areas in which they may validly differ.List of implementations
There are also commercial implementations available from Franz, Xanalys, Digitool, Corman and Scieneer.External links
see also: WCL, Kyoto Common Lisp.