我不明白在这个例子中funcall会做什么。我需要一个关于代码何时执行的解释。
(defun total-value (field L)
"Answer average value of fields of complex entries in list L"
(if (null L)
0
(+ (funcall field (first L))
(total-value field (rest L)))))https://stackoverflow.com/questions/20152261
复制相似问题