非法学期开始

发布于 2024-12-02 01:03:02 字数 735 浏览 0 评论 0原文

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 . 
?-

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

非常感谢您的任何建议,

GNU Emacs 23.2.1
prolog-mode-version is a variable defined in `prolog.el'. Its value is "1.22"

I have consulted the following file:

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).

However, when I do the following:

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

I get the following error, it seems perfectly legal to me:

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

Can anyone explain I am going wrong?

Many thanks for any advice,

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

你怎么这么可爱啊 2024-12-09 01:03:02

您的查询中多了一个逗号。
应该是

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

You have an extra comma in your query.
It should be

body(Body, Miles, _, _, _), Miles > 100.
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文