Seekers of Perl Wisdom I am looking for an answer to this problem of printing out a hash from 1 to 10
I read this in a book push(@{$hash{"KEYNAME"} }, "new value"); To use references to arrays as the hash values
Then, deference the value as an array reference when printing out the hash
foreach $string {keys %hash) {
print $string: @{hash{$string)}\n
I would like to do thiis but I don't understand.