3

I am wondering if there is an equivalent of the SWI initialization file "~/.plrc" in YAP. I would like to define some directories with: file_search_path/2 before loading YAP, but I do not know where to do it.

Any help will be highly appreciated!.

false
  • 10,264
  • 13
  • 101
  • 209
Sergio
  • 8,532
  • 11
  • 52
  • 94

1 Answers1

4

In my .yaprc

:- multifile(library_directory/1).
library_directory('~/ftp/Prolog-inedit').
false
  • 10,264
  • 13
  • 101
  • 209