From ba530d3deb82e55e5f69fc02877a4f524a11ce38 Mon Sep 17 00:00:00 2001 From: Hassan Abedi Date: Wed, 3 Jun 2026 12:30:41 +0200 Subject: [PATCH] WIP --- crates/query-ops/README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/crates/query-ops/README.md b/crates/query-ops/README.md index edcd325..4c5e2f0 100644 --- a/crates/query-ops/README.md +++ b/crates/query-ops/README.md @@ -34,6 +34,7 @@ It uses all three operators: - and `natural_join` to attach each book's price. ```prolog +% Datalog rule/query Q(name, book, dollars) :- author(name, book), bestseller(book), price(book, dollars). ``` @@ -107,7 +108,7 @@ fn main() { } ``` -How it works: +How it works (logically):