On 2011-11-25 10:50, timothy adigun wrote:

    for (@$thing1) # to access the whole array after referencing

for 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: beginners-unsubscr...@perl.org
For additional commands, e-mail: beginners-h...@perl.org
http://learn.perl.org/


Reply via email to