I have a Prolog file (Hanoi.pl) containing the code for solving the Hanoi Towers puzzle: hanoi( N ):- move( N, left, middle, right ).
I\'m trying开发者_运维技巧 to set up an environment with interprolog and SWI prolog, interprolog needs the location of swi\'s \"pl\" but i cant find it. All i can find is swipl or plrc and neither wor
I have 2 tables, a table of people with peopleID and name, and a table of pledges they have made which has a pledgeID (1 to 6) a personID to say who it cam开发者_如何学Ce from, and an amount field.
Do these开发者_开发问答 terms unify? Why? likes(jax, X). and likes(X, jin). food(X, Y, Z). and food(M, M, M).