Ok well how do I create a nested loop to itterate through the values?
(BTW I am a PHP guy...)
# MY CODE
my @aTest = (
[ 'albert', 'daniel', 'nathan' ],
[ 'danielle', 'mylee', 'rob' ],
);
# This does not work:
foreach $row (@aTest){
foreach $col($row){
print "$col \n";
}...