I’m using: SWI-Prolog version 8.1.3 the lates for windows 10 x64
I try consult simply programm or just empty file, anything.
Expected result - to have green line like (…/1.pl) compiled 0.0sec ect…
Actual - nothing happend
My simple programm is compiled by SWI Prolog text editor without any bugs.
But what I’m getting is: I want to consult my programm but i cant. After press button “consult” and select file.pl nothing happens. The main screen continue to work without any problems.
After open a file (consult/ select file/ press ok)
My code looks like this:
mother_child(trude, sally).
father_child(tom, sally).
father_child(tom, erica).
father_child(mike, tom).
sibling(X, Y) :- parent_child(Z, X), parent_child(Z, Y).
parent_child(X, Y) :- father_child(X, Y).
parent_child(X, Y) :- mother_child(X, Y).