Perl Data Structures - Arrays of Arrays
Creating Arrays of Arrays:
Method 1:
@array=(["apple","orange"],["Mango","Banana"],["Papaya","Peach"]);
print $array[0][1];
Read more »
[There's More Than One Way To Do It]
Always A Blog To Get Confident in Coding
Creating Arrays of Arrays:
Method 1:
@array=(["apple","orange"],["Mango","Banana"],["Papaya","Peach"]);
print $array[0][1];
Read more »