http://qs1969.pair.com?node_id=737932


in reply to Re: mysterious threads::shared behaviour
in thread mysterious threads::shared behaviour

So, that explains it. Thank you. I worked around the XML::Dumper issue with the following code:
my %tmp_h; for (keys(%h)) { $tmp_h{$_} = {}; %{$tmp_h{$_}} = %{$h{$_}}; } pl2xml(\%tmp_h, 'h.xml'); %tmp_h = ();
Where can I read more about LV scalars?