"Jay Savage" schreef:

>     for (0..#$arrayname) { print $array[$_] }

The "#$" should be "$#" and you have two different array names there
that I assume you meant equal.


Alternative 1:

  print $ary[$_] for $[ .. $#ary;


Alternative 2:

  print for @ary;

-- 
Affijn, Ruud

"Gewoon is een tijger."



-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
<http://learn.perl.org/> <http://learn.perl.org/first-response>


Reply via email to