From a9cde98508be304d6c0c6268c14fd949b7d0fce8 Mon Sep 17 00:00:00 2001 From: Marcus Date: Fri, 13 Jun 2025 01:04:06 +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 22f5b87..5712121 100644 --- a/README.md +++ b/README.md @@ -38,8 +38,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