i am quite new to prolog and i'd like an explanation about something if possible.
What exactly does the
"-->"
prolog operator do? i can't seem to find an easy straight answer for that.
and just one more thing...
what's the difference between:
phrase--> noun(X),
verb(X).
and this
phrase:- noun(X),
verb(X).
thanks in advance!