The following code works in swi-prolog:
:- asserta(user:file_search_path(money, '/media/D/db')).
dataFile(F) :-
absolute_file_name(money('test.dat'), F, []).
It seems there is no module in gprolog. How can i make it work under gprolog ?
Sincerely!