Previous | Next

car


> (car '(one two three (a b c) four five))

one

The first element: one.

Demonstrate in the script-fu console.

car stands for "contents of address register"
which has to do with how Lisp was originally implemented