in reply to Hash of Hash of Listed subroutines

Hi ,

The Structure of hash cannot be used as the structure in for ,only arrays can be used for for and foreach and hence you have to have

for my $Key(keys %Hashofsubshashes){ for my $i(@ {$Hashofsubshashes{$Key}}){ print "$Key->&{$Hashofsubshashes{$Key}->{$i}}\n"; } }