On 2011-11-25 10:50, timothy adigun wrote:
for (@$thing1) # to access the whole array after referencingfor clarity use: for (@{$thing1}){...}
For clarity, I prefer it like this:
for my $t ( @$thing1 ) {
...;
}
So with plenty of cheap white space.
--
Ruud
--
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]
http://learn.perl.org/
