StackOverflow 文档 common-lisp 教程 递归 递归模板 1 单条件单尾递归 递归模板 1 单条件单尾递归 Created: November-22, 2018 (defun fn (x) (cond (test-condition the-value) (t (fn reduced-argument-x)))) 递归打印列表的元素递归