in reply to Copying multi-level hash
Though I somehow think none of those look right...1. %hash{'key1'}{1} = %{$copy}; 2. %hash{'key1'}{1} = %copy; 3. $hash{'key1'}{1} = %copy; 4. %{$hash{'key1'}{1}} = %copy; 5. %{$hash{'key1'}{1}} = %{$copy};
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: Copying multi-level hash
by arturo (Vicar) on Mar 08, 2001 at 04:05 UTC | |
|
(jeffa) Re: Re: Copying multi-level hash
by jeffa (Bishop) on Mar 08, 2001 at 04:05 UTC |