Help for this page
use strict; use warnings; use JSON; ... print Dumper($result); my $rec = XMLout( $result, RootName => 'root', SuppressEmpty => 1); print Dumper($rec);
$VAR1 = { 'a' => 'x', 'b' => bless( do{\(my $o = 1)}, 'JSON::XS::Boolean' ) ... }; $VAR1 = '<root a="x" b="true" /> ';