非法开始学期

时间:2011-08-30 16:03:17

标签: prolog

GNU Emacs 23.2.1     prolog-mode-version是`prolog.el'中定义的变量。它的值是“1.22”

我查阅过以下文件:

body(mercury, 36, small, none, none).
body(venus, 67, small, atmosphere, none).
body(earth, 93, small, atmosphere, none).
body(moon, 93, small, none, none).
body(mars, 141, small, atmosphere, none).
body(jupiter, 489, large, atmosphere, rings).

但是,当我执行以下操作时:

body(Body, Miles, _, _, _,) , Miles > 100.

我收到以下错误,对我来说似乎完全合法:

?- body(Body, Miles, _, _, _,) , Miles > 100.
ERROR: Syntax error: Illegal start of term
ERROR: body(Body, Miles, _, _, _,
ERROR: ** here **
ERROR: ) , Miles > 100 . 
?-

任何人都可以解释我错了吗?

非常感谢任何建议,

1 个答案:

答案 0 :(得分:6)

您的查询中有一个额外的逗号。 它应该是

body(Body, Miles, _, _, _), Miles > 100.