Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
到目前为止,这是我能想到的 .pro 文件。我想打印/获取/输出“thelist”的第一次出现(=first Head)。
thelist([a,b,c,d,e]). head(H,[H|T]).
为什么它总是返回 NO?谢谢
尝试
... thelist([H|_]), write(H), nl, ...
看来我也可以这样使用:
thelist(X),first(F,X).
但以下代码必须添加到知识库(.pro 文件)
first(F,[F|_]).
更换
head(H,[H|T]).