Content deleted Content added
m Task 70: Update syntaxhighlight tags - remove use of deprecated <source> tags |
|||
Line 71:
Prolog example:
<
mother_child(trude, sally).
Line 82:
parent_child(X, Y) :- father_child(X, Y).
parent_child(X, Y) :- mother_child(X, Y).
</syntaxhighlight>
This results in the following query being evaluated as true:
|