I am VERY new at Prolog I am looking for any beginner material on Prolog. I am very interested in learning the language. Where' s good place to start? Online preferably
I also am having a bit of trouble writing some code. I need to return a sentence but all I am getting is a list of atoms (i believe that's the term)
ex I get [the, cat, is, pretty] When I would really like to get [the cat is pretty].
writelist(X):-
write(X), nl.
How can I turn this atom response into just a normal sentence?