in reply to [Solved] Very simple XML::Simple problem
opts is the default root name, setting RootName to undefined should solve your issue.
my $xml = XMLout(\%xml_hash, RootName => undef);
In Section
Seekers of Perl Wisdom
in reply to [Solved] Very simple XML::Simple problem
opts is the default root name, setting RootName to undefined should solve your issue.
my $xml = XMLout(\%xml_hash, RootName => undef);