callStandardExampleTheoryGoalsToSolution

Prolog Standard examples to test call primitive with callStandardExampleTheory

?- call('!') ; true.
?- Z = !, call( (Z = !, a(X), Z) ).
?- call( (Z = !, a(X), Z) ).
?- call(fail).
?- call(true, X).
?- call(true, fail, 1).