以下代码适用于swi-prolog:
:- asserta(user:file_search_path(money, '/media/D/db')).
dataFile(F) :-
absolute_file_name(money('test.dat'), F, []).
似乎gprolog中没有模块。我怎样才能让它在gprolog下工作?
此致!
答案 0 :(得分:0)
您没有提供足够的详细信息,但我推断问题是运营商': - '尝试'初始化/ 1 '
$ cat > file.pl
initialization(asserta(user:file_search_path(money, '/media/D/db'))).
dataFile(F) :- absolute_file_name(money('test.dat'), F, []).
^d
$ gprolog --init-goal "['file.pl']"
compiling /Users/user/file.pl for byte code...
/Users/user/file.pl compiled, 2 lines read - 763 bytes written, 8 ms
GNU Prolog 1.4.1
By Daniel Diaz
Copyright (C) 1999-2012 Daniel Diaz
| ?-
希望这项工作......