RosettaCodeData/Task/XML-DOM-serialization/Oz/xml-dom-serialization-1.oz

8 lines
119 B
Text
Raw Permalink Normal View History

2013-04-11 01:07:29 -07:00
declare
proc {Main}
DOM = root(element("Some text here"))
in
{System.showInfo {Serialize DOM}}
end
...