Help for this page

Select Code to Download


  1. or download this
    use strict;
    use XML::Writer;
    use IO::File;
    ...
    $writer->endTag("rootnode");
    $writer->end();
    $output->close();
    
  2. or download this
    <?xml version="1.0"?>
    <rootnode xmlns="my:name:space" version="1" creator="anti"
    ><emptynode value="abc"
    ...
    >Hello, world!</node
    ></rootnode
    >
    
  3. or download this
    <?xml version="1.0"?>
    <rootnode xmlns="my:name:space" version="1" creator="anti">
    ...
      Hello, world!
     </node>
    </rootnode>