0

我试图在 S 表达式列表上使用一个函数,但它只是给了我一个错误"Unbound variable butter"

(depth* (()
         ((bitter butter)
          (makes)
          (butter bitter)
         butter)))
4

1 回答 1

1

看来您忘了引用 s 表达式,试试这个:

(depth* '(() ; notice the quote at the start of the list
          ((bitter butter)
           (makes)
           (butter bitter)
           butter)))
于 2013-12-10T13:41:12.970 回答