Syntax tree browsing
Basic syntax tree browsing function is tree:forEach. Using this function you can execute given function for each structure with given name:
tree:forEach("greetings", function(structure)
print("Hello,", strcture:findChildByName("name").first.value)
end)