in reply to Help with hash reference mystery...
toprint Dumper(%$hash{'output'});
Because in the original code you were actually dereferencing %{$hash}{'output'}, where the $hash variable was not defined (you defined %hash earlier, but not $hash).print Dumper(%{$hash{'output'}});
|
---|