I'm brand new to Prolog. I am simply trying to get some output from Prolog on Windows Vista.
I have downloaded and installed Prolog 5.1; I chose the .pro file extension when installing (not to confuse with perl files).
I created a file called test.pro
Inside this file I put the following:
inside(tom).
?-inside(tom).
I double clicked the file and a command line interface popped up. On this interface (after a bunch of generic prolog version/copyright info) the only output is:
1 ?-
OK, for starters, I did not expect it to ask a question; I expected it to answer a question (something along the line of 'yes').
Anyway, I tried to respond to the querry with the following:
In the cmd line I re-inserted 'inside(tom).', so the whole line looks like:
1 ?- inside(tom).
I pressed enter and got an error message:
ERROR: toplevel: Undefined procedure: inside/1 (DWIM could not correct goal)