REPL checkpoint
This commit is contained in:
parent
69c156024a
commit
1b3280a947
21 changed files with 503 additions and 34 deletions
9
tests/better_parser/resources/parent.pl
Normal file
9
tests/better_parser/resources/parent.pl
Normal file
|
@ -0,0 +1,9 @@
|
|||
male(john).
|
||||
male(jimmy).
|
||||
female(mary).
|
||||
parent(john, jimmy).
|
||||
parent(mary, jimmy).
|
||||
father(X, Y) :- parent(X, Y), male(X).
|
||||
mother(X, Y) :- parent(X, Y), female(X).
|
||||
|
||||
kan_goed_koken(miriam).
|
Reference in a new issue