A cons pair or cell is a data structure from the Lisp programming language, used to couple two values together. The first value in the cons pair is called the "car", the second value is the "cdr".

List links in Lisp (or it's daughter, Scheme) are commonly represented using cons'es in which the cdr, is a new cons pair.

(this is a stub page)