18 lines
247 B
Text
18 lines
247 B
Text
|
|
using xml
|
||
|
|
|
||
|
|
class XmlDom
|
||
|
|
{
|
||
|
|
public static Void main ()
|
||
|
|
{
|
||
|
|
doc := XDoc()
|
||
|
|
root := XElem("root")
|
||
|
|
doc.add (root)
|
||
|
|
|
||
|
|
child := XElem("element")
|
||
|
|
child.add(XText("Some text here"))
|
||
|
|
root.add (child)
|
||
|
|
|
||
|
|
doc.write(Env.cur.out)
|
||
|
|
}
|
||
|
|
}
|