in reply to Cant use array with numbers??
You probably want something like;
The for loop can be used in Perl the same way as you would in C. Of course the for loop in Perl can be used in the other ways too.for($i=0; $i < @Array; $i++) { ... }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Cant use array with numbers??
by ikegami (Patriarch) on Sep 18, 2007 at 12:59 UTC | |
by bruceb3 (Pilgrim) on Sep 18, 2007 at 20:33 UTC |