in reply to Re: Re: Values not printing.
in thread Values not printing.
If you didn't want to use foreach's aliasing, you would do something like:foreach my $alias (keys %hash3) { print "The members of $alias are\n"; foreach (@{$hash3{$alias}}) { print "\t$_\n"; } }
-Tonprint $hash3{$hashKey}->[$arrayIndex];
|
|---|