in reply to
Filling an array
If you just want an array filled with 100 values you could make effective use of the range operator -
@arr = 1..100;
[download]
Now it'll be filled with the numbers from 1 to 100, handy.
broquaint
Comment on
Re: Filling an array
Download
Code
In Section
Seekers of Perl Wisdom