From 24dddee82e4b4133c4f5efecac887b5387f688b3 Mon Sep 17 00:00:00 2001 From: Marcus Date: Sat, 21 Jun 2025 23:43:46 +0200 Subject: [PATCH] Update README.md --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index bb0d4b0..199ac48 100644 --- a/README.md +++ b/README.md @@ -60,8 +60,8 @@ world:set(sara, Name, "sara") print(getName(parent(sara))) -for e in world:query(pair(ChildOf, alice)) do - print(getName(e), "is the child of alice") +for e, name in world:query(Name, pair(ChildOf, alice)) do + print(name, "is the child of alice") end -- Output