Can some one help me to understand the below perl code line:
I understand the code line #1, it is basically declaring the array.
Can some one help me with the meaning of code line#2 and 3.
Thanks.
Code:
1. my @myarray;
2. $myarray[0][0] {testscore} =0;
3. $myarray[0][0] {testgrade} = "none";
Can some one help me with the meaning of code line#2 and 3.
Thanks.
Comment