in reply to Re: XML::Compile not mapping my params hash
in thread XML::Compile not mapping my params hash
Use Data::Dumper to look at the hash; set $Data::Dumper::Useqq to find spurious characters.
:D
sub dd { use Data::Dumper; print Data::Dumper->new([@_])->Sortkeys(1) ->Indent(1)->Useqq(1)->Dump . "\n"; }
|
|---|