我有以下函数,我想使用它们的返回值作为父函数的参数来调用多个其他函数。
这目前有效:
(defun feet-to-m (A)
(setf B (feet-to-inches A))
(setf C (inches-to-cm B))
(setf D (cm-to-m C)))
我想知道 Lisp 是否能够嵌套函数以便以下工作,或者更有效的方法:
(defun feet-to-m (A)
(cm-to-m (inches-to-cm (feet-to-inches (A)))))