我在 Dr. Racket Verion 5.3.6 中运行此代码(The Little Schemer):
(define rember
(lambda (a lat)
(cond
((null? lat) (quote ()))
(else
(cond
((eq? (car lat) a) (cdr lat))
(else (cons (car lat) (rember a (cdr lat)))))))))
它抛出错误:部分quote: expected the name of the symbol after the quote, but found a part
。(quote ()))
我在这里做错了什么?