Hey guys, this should be quite simple to answer....
Im using XSB Prolog...trying to load a .p prolog database
I have a file xxx.P in directory C:\XSB
So in XSB I type
?consult('xxx.p').
and i get:
cannot find the file or module xxx.p
i've tried moving the p file to the same directory as the XSB executable but no luck. Any ideas?
edit: contents of xxx.p:
has_access(tom,123).
has_access(bob,456).
thanks