Wrong read function used for #lang repltest datalog #13

Open
opened 2016-03-31 14:22:14 +01:00 by SuzanneSoy · 1 comment
SuzanneSoy commented 2016-03-31 14:22:14 +01:00 (Migrated from github.com)
#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).

This gives the error:

read: illegal use of `.'
``` #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). ``` This gives the error: ``` read: illegal use of `.' ```
SuzanneSoy commented 2016-03-31 14:24:03 +01:00 (Migrated from github.com)

I think that repltest is not using the read function from #lang datalog.

I think that `repltest` is not using the `read` function from `#lang datalog`.
Sign in to join this conversation.
No Milestone
No project
No Assignees
1 Participants
Notifications
Due Date
The due date is invalid or out of range. Please use the format 'yyyy-mm-dd'.

No due date set.

Dependencies

No dependencies set.

Reference: suzanne.soy/repltest#13
No description provided.