Checkpoint
This commit is contained in:
parent
1b3280a947
commit
095659cf30
4 changed files with 70 additions and 15 deletions
|
@ -6,4 +6,5 @@ parent(mary, jimmy).
|
|||
father(X, Y) :- parent(X, Y), male(X).
|
||||
mother(X, Y) :- parent(X, Y), female(X).
|
||||
|
||||
kan_goed_koken(miriam).
|
||||
foo(0).
|
||||
foo(X) :- X > 0, Y is X - 1, foo(Y).
|
||||
|
|
Reference in a new issue