I am trying to create a Hash that has as its value an array.
The first element of the value(which is an array) is a scalar. The second element of the value(which is an array) is another hash.
I have put values in the key and value of this hash as follows :
${${$senseInformationHash{$sense}[1]}{$word}}++;
Here,
My main hash -> senseInformationHash
My Value -> Is an Array
So, ${$senseInformationHash{$sense}[1]} gives me reference to my hash
and I put in key and value as follows :
${${$senseInformationHash{$sense}[1]}{$word}}++;
I am not sure if this is a correct way to do it. Since I am stuck and not sure how I can print this complex thing out. I want to print it out in order to check if I am doing it correctly.
Any help will be very much appreciated. Thanks in advance!
perldoc perldscin a terminal or go to perldoc.perl.org/perldsc.html in your browser. The article has examples of working with many different types of mixed data structures. – daotoad Nov 12 '10 at 1:26