cdr


Remaining elements after the first element.

For example the cdr of (a 2 3 4) is (2 3 4).

Basic, Lisp-family, function primitive.

Example

  
 (cdr '(a 2 3 4)) ;  returns (2 3 4)