> (car '(one two three (a b c) four five)) one
The first element: one.
> (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