如何在Prolog中加载文件?
我在 c:/ 中有一个文件,名称:“file1.pl”。
现在我想将文件加载到 prolog 中,然后询问有关该过程的查询以及我定义的关系。
据我了解,我需要执行下一步:
file ->编辑。
文件->重新加载修改后的文件。
文件->用于查看文件和过程的导航器。
当我执行这些步骤时,什么也没有发生。当我提出查询时,它给了我下一个问题:toplevel:未定义的过程:blabla/2(DWIN无法纠正目标)
谢谢。
I have a file, name: "file1.pl" in c:/.
Now I want to load the file into the prolog, and then ask a query about the procedure and the relations that I defined.
as I understood, I need to do the next stpes:
file -> edit.
file -> reload modified files.
file -> Navigator to view file and procedre.
When I an doing these steps, Nothing is happen. When I ask the query, It gives me the next problem: toplevel: Undefined procedure: blabla/2 (DWIN couldnt correct goal)
Thank you.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试执行
consult(filename)
。可能需要也可能不需要扩展。Try doing
consult(filename)
. Extension might or might not be needed.