in reply to Re: hash dereferencing / copying
in thread hash dereferencing / copying

Or, Data::Dumper (it is slower than Storable though).
use Data::Dumper; my $this = {a => 1, b => {bb => [ 'ccc' ]}, c => 3}; # clone $this into $that my $that = eval Data::Dumper::Dumper($a);
/prakash

Replies are listed 'Best First'.
Re: Re: Re: hash dereferencing / copying
by IlyaM (Parson) on Feb 27, 2002 at 23:18 UTC