in reply to Hash keys reference
Data::Dumper will work with this structure if you set Purity to 1 (see Data::Dumper for the different ways to do this.my $keyval1 = { 'stuff' => 'more stuff', 'other stuff' => 'even more stuff', }; %hash = ( 'key' => $keyval1, 'ref to key' => $keyval1, );
|
---|