import "./xsequence" for XDocument var xml = """
Invisibility Cream 14.50 Makes you invisible Levitation Salve 23.99 Levitate yourself for up to 3 hours per application
Blork and Freen Instameal 4.95 A tasty meal in a tablet; just add water Grob winglets 3.56 Tender winglets of Grob. Just add water
""" var doc = XDocument.parse(xml) System.print("The first 'item' element is:") System.print(doc.root.element("section").element("item")) var prices = [] var names = [] for (el in doc.root.elements) { for (el2 in el.elements) { prices.add(el2.element("price").value) names.add(el2.element("name").value) } } System.print("\nThe 'prices' are:\n%(prices.join("\n"))") System.print("\nThe 'names' are:\n%(names.join("\n"))")