正确使用" cond"与"和"一起使用在我的一个职能中:
(cond (and (find 'hello actionsems)
(find 'formal actionsems))
(print "Chatterbot: Hello, how are you?")
(and (find 'hello actionsems)
(find 'informal actionsems))
(print "Chatterbot: Hey, how's it going?")
)
我被告知我正在尝试使用未绑定的变量" AND"。有人能指出我在语法中出错的地方吗?