in reply to xml::writer and xml::LibXML
use strict; use warnings; use XML::Writer; open(my $fh, ">", "tmp.xml") or die "Err: $!"; my $w = XML::Writer->new( OUTPUT => $fh, ); $w->emptyTag('root'); $w->end(); close $fh;
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: xml::writer and xml::LibXML
by fionbarr (Friar) on May 15, 2013 at 16:27 UTC | |
by fionbarr (Friar) on May 15, 2013 at 16:36 UTC |