RosettaCodeData/Task/XML-DOM-serialization/Lua/xml-dom-serialization.lua

7 lines
161 B
Lua
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
require("LuaXML")
local dom = xml.new("root")
local element = xml.new("element")
table.insert(element, "Some text here")
dom:append(element)
dom:save("dom.xml")