Suppose racket's datalog code:
#lang datalog
price(a, 1).
a1(A) :- price(A, Price), Price > 0.
a1(A)?
I would expect result:
a1(a)
I receive an error:
prices_datalog.rkt:4:32: datalog: Unexpected token IDENTIFIER in: ">"
How can I solve this problem?