gpt4 book ai didi

prolog - Prolog 脚本的意外输出

转载 作者:行者123 更新时间:2023-12-02 04:32:10 24 4
gpt4 key购买 nike

leftHand(empty).
rightHand(empty).

inHands :-
write("Left hand:"),
nl,
leftHand(X),
tab(2),
write(X),
nl,
nl,
write("Right hand:"),
rightHand(Y),
tab(2),
write(Y),
nl.

我希望 inHands. 返回如下内容:

Left hand:
empty

Right hand:
empty

但是,这就是我所看到的:

 24 ?- inHands.
[76, 101, 102, 116, 32, 104, 97, 110, 100, 58]
empty

[82, 105, 103, 104, 116, 32, 104, 97, 110, 100, 58] empty
true.

我在这里做错了什么?

最佳答案

结果我必须使用这样的单引号:

write('My text').

关于prolog - Prolog 脚本的意外输出,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2257764/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com