为什么这段代码不起作用?
(setf x '(foo bar (baz)))
(labels
((baz () (print "baz here")))
(baz) ;works
(eval (third x))) ;fails with the below message
*** - EVAL: undefined function BAZ
Run Code Online (Sandbox Code Playgroud)
我正在使用GNU CLISP.
clisp ×1