In order to write a procedure satisfy(P,L) which returns the list L of all terms X such that the unary predicate P(X) succeeds. I have attempted the following: satisfy(P,L):- findall(X,call(P(X)),L).
Am I on the right track or I have gone completely off?