Почему не работает absolute_file_name

Следующий код работает в swi-prolog:

:- asserta(user:file_search_path(money, '/media/D/db')).
dataFile(F) :-
absolute_file_name(money('test.dat'), F, []).

Кажется, в gprolog нет модуля. Как я могу заставить его работать под gprolog?

Искренне!

1 ответ

Вы не даете достаточно подробностей, но я понимаю, что проблема заключается в операторе ': -' Попробуйте с 'initialization / 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
| ?- 

Надеюсь, что эта работа...

Другие вопросы по тегам