如何解决在序言中提问时出现的错误?

发布于 2025-01-13 08:06:34 字数 463 浏览 1 评论 0原文

我对Prolog语言相当熟悉。在 prolog 中编写 DSS 时,我

pl:96:12: syntax error: . or operator expected after expression
    1 error(s)

个人遇到了该错误,我不知道错误在哪里 这是编译器指示错误的代码的一部分

ask(Question) :-
    write('Do you have ?:'),
    write(Question),
    write('?,y/n '),
    read(Response), nl,
    ( (Response == yes ; Response == no)
    ->
    assert(yes(Question)) ;
    assert(no(Question)), fail).

:- dynamic yes/1,no/1. 

I am fairly familiar in Prolog language. was writing a DSS in prolog and I encountered the error

pl:96:12: syntax error: . or operator expected after expression
    1 error(s)

personally I don't see where the error is
here is a part of the code where the compiler is indicating the error

ask(Question) :-
    write('Do you have ?:'),
    write(Question),
    write('?,y/n '),
    read(Response), nl,
    ( (Response == yes ; Response == no)
    ->
    assert(yes(Question)) ;
    assert(no(Question)), fail).

:- dynamic yes/1,no/1. 

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

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

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文