datalog icon indicating copy to clipboard operation
datalog copied to clipboard

Results 2 datalog issues
Sort by recently updated
recently updated
newest added

The `#lang datalog` reader fails when invoked in `read` mode. For example, this attempt: ```racket #lang racket/base (require syntax/modread) (with-module-reading-parameterization (λ () (read (open-input-string "#lang datalog parent(creusa, ascanius). parent(anchises, aeneas)....

I'm new, just installed Racket v8.0, trying to follow tutorial https://docs.racket-lang.org/datalog/Tutorial.html. I expect REPL to print me same results as when I execute code: ``` > parent(A, B)? parent(john, douglas)....