9 lines
172 B
Text
9 lines
172 B
Text
|
|
import "./xsequence" for XDocument, XElement
|
||
|
|
|
||
|
|
var doc = XDocument.new(
|
||
|
|
XElement.new("root",
|
||
|
|
XElement.new("element", "Some text here")
|
||
|
|
)
|
||
|
|
)
|
||
|
|
System.print(doc)
|