Sync to released Jecs 0.6.1-nightly.20250622T001116Z (#102)

Reviewed-on: #102
This commit is contained in:
marked 2025-06-22 02:11:37 +02:00
parent ae7948c207
commit a543aec347
7 changed files with 12 additions and 12 deletions

View file

@ -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