in reply to My code (I can't figure out how to implicitly recurse)
in thread How to tie multilevel (multidimensional) hash?
use lib qw( . ); use MultiHash; my %hash_a; my %hash_b; tie %hash_a, "MultiHash"; tie %hash_b, "MultiHash"; $hash{ x } = \%hash_b; $hash{ x }{ y } = 10; $hash{ x }{ y };
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: My code (I can't figure out how to implicitly recurse)
by mikezone (Novice) on Feb 12, 2003 at 03:26 UTC |