in reply to Re: Re: Passing hashes by referencein thread Passing hashes by reference
$hash = { a=>1 }; ${$hash}{b}=2; print ${$hash}{a}; print ${$hash}{b}; [download]