I am a novice at programming in prolog.
I want to change the value returned by a prolog program such that it returns true / false instead of the standard yes or no.
Consider a very simple example : E.g. simple.P
node(1).
isNode(X) : node(X)
on the prolog command line if I type isNode(1) it returns with yes like:
isNode(1).
yes
My question is :
How do i change this from yes to true?