我想在球拍中使用列表完成一個學校問題。這是一個簡單的問題使用遞歸,但我不明白爲什麼我的代碼不會工作。如果提供的項目與列表中的項目匹配,我們應該搜索列表並返回true。這是我到目前爲止有:使用遞歸的球拍列表錯誤
(define (containsAnywhere test list)
(cond
((null? list) '())
(equal?((car list) test))
(else(containsAnywhere (test (cdr list))))))
,但我得到了以下錯誤:
application: not a procedure;
expected a procedure that can be applied to arguments
given: 1
arguments.: