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

8 lines
119 B
Text
Raw Permalink Normal View History

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