in reply to Hash of hashes question
This will save you a lot of time debugging.use strict; use warnings;
Update:for my $key(keys %termservers) { for my $key2(keys %{$termservers{$key}}) { print "$key1 - $key2 = $termservers{$key1}{$key2}\n"; } }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: Hash of hashes question
by Enlil (Parson) on Oct 22, 2003 at 16:09 UTC | |
by Aragorn (Curate) on Oct 23, 2003 at 07:34 UTC |