Looping through an anonymous array of arrays
[email protected] ("Rodrick Brown")
| Newsgroups | perl.beginners |
|---|---|
| Message-ID | <[email protected]> |
my $arrayRef = [ 1, 2, 3, ['a', 'b', 'c', ["Hello"] ]]; I have no problem returning single elements but how would one walk this list of elements with say a for loop?