Just installed SWI-Prolog on my W8 machine and it's throwing an error.
Here's the error:
ERROR: toplevel: Undefined procedure: mark/0 (DWIM could not correct goal)
Let's say my prolog source file contains one fact:
Prolog source...
it_is_monday. //The fact
So I compile the buffer, and get:
.../documents/prolog/prologSource compiled 0.00 sec, 2 clauses
Now when I input
it_is_monday.
The output as expected is true
. However when I input say,
some_other_statement.
I get the error posted above as opposed to false. Can anyone tell me what's going on here?
Solution: Different prolog version.