Checkpoint

This commit is contained in:
Tibo De Peuter 2025-04-27 11:08:28 +02:00
parent 1b3280a947
commit 095659cf30
Signed by: tdpeuter
GPG key ID: 38297DE43F75FFE2
4 changed files with 70 additions and 15 deletions

View file

@ -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).