Talk:Oz (programming language): Difference between revisions

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