www

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README

commit 95ac55f300fd6116f456e17d714cb8f1d1a32380
parent 8c638c2537c28d2fa64365eb74b3e5d1b7e61ddf
Author: Georges Dupéron <georges.duperon@gmail.com>
Date:   Wed,  6 Apr 2016 16:54:52 +0200

Added datalog test case, it does not work yet and needs #:separator and other options to be implemented first.

Diffstat:
Atest/todo-datalog.rkt.fail | 11+++++++++++
1 file changed, 11 insertions(+), 0 deletions(-)

diff --git a/test/todo-datalog.rkt.fail b/test/todo-datalog.rkt.fail @@ -0,0 +1,10 @@ +#lang repltest datalog +parent(amy, anabella). +parent(john, anabella). +parent(anabella, jack). +parent(jack, ted). + +grandparent(X, Z) :- parent(X, Y), parent(Y, Z). + +> grandparent(X, ted)? +grandparent(anabella, ted). +\ No newline at end of file