DOM serialization
require('XML::Simple')
print %S'XML::Simple'.XMLout(
    :(root => :( element => 'Some text here' )),
    NoAttr => 1, RootName => '',
)Output:
  <root>
    <element>Some text here</element>
  </root>Last updated
Was this helpful?