cdr

Synopsis

(cdr pair)

Parameters

  • pair

Description

Side Effects

Return Value

Returns the cdr component of pair.

Example

> (cdr '(a))
()
> (cdr '(a b c))
(b c)
>