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.
我想为 swi-prolog 中的程序设置默认文件夹。我注意到我可以更改我的主文件夹中的个性化文件“ .plrc ”,但我不知道编辑此文件的规则。
向您的.swiplrc文件(.plrc旧 SWI-Prolog 版本中的文件)添加一个initialization/1指令,其目标是将当前目录更改为您想要的任何目录。例如:
.swiplrc
.plrc
initialization/1
:- initialization(cd('$HOME/my_fancy_prolog_project')).