RosettaCodeData/Task/XML-DOM-serialization/Wren/xml-dom-serialization-2.wren

9 lines
172 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
import "./xsequence" for XDocument, XElement
var doc = XDocument.new(
XElement.new("root",
XElement.new("element", "Some text here")
)
)
System.print(doc)