Compare commits

..

1 commit

Author SHA1 Message Date
renyang19910211
43f9e7bc72
Merge 74c6a35352 into 37f1e5be52 2025-06-20 23:40:22 -04:00

View file

@ -60,8 +60,8 @@ world:set(sara, Name, "sara")
print(getName(parent(sara)))
for e, name in world:query(Name, pair(ChildOf, alice)) do
print(name, "is the child of alice")
for e in world:query(pair(ChildOf, alice)) do
print(getName(e), "is the child of alice")
end
-- Output