1 2 3 4 5 | parent( mary, john). parent( ann, mary). female( mary). mother( x, y) :- parent( x, y), female( x). grandparent( x, y) :- parent( x, z), parent( z, y). |
-
upload with new input
-
result: Success time: 0.02s memory: 6204 kB returned value: 0
?-
ERROR: Stream user_input:0:0 Syntax error: Unexpected end of file
-
result: Success time: 0.02s memory: 6204 kB returned value: 0
parent( x. y);
ERROR: Syntax error: Unexpected end of clause ERROR: parent( x ERROR: ** here ** ERROR: . ERROR: Stream user_input:0:5 Syntax error: Unexpected end of file
-
result: Success time: 0.02s memory: 6204 kB returned value: 0
parent( x, john).
false.
-
result: Success time: 0.02s memory: 6204 kB returned value: 0
parent( mary, john).
true.



