Sync to upstream Jecs 0.6.1-nightly.20250622T001116Z

This commit is contained in:
forgejo-actions 2025-06-22 00:11:35 +00:00 committed by github-actions[bot]
parent ae7948c207
commit c301eae6a3
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