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;
Now it'll be filled with the numbers from 1 to 100, handy.

broquaint