car 与 cdr 都是 Common Lisp 的基本构建块,用于构建 cons 单元格。
car 运算符应用于列表时,将返回该列表的第一个元素。例如
(car (list 1 2 3 4 5)) 1
它可以被 first 函数替换 [1]
(first (list 1 2 3 4 5)) 1