Lisp在Cond语句中使用And

时间:2016-04-09 14:49:22

标签: lisp

正确使用" 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"。有人能指出我在语法中出错的地方吗?

0 个答案:

没有答案