in reply to Re: Re: Filling an array
in thread Filling an array

I like this style of for loop, since there are fewer
chances for a typo:
push(@array,1) for(0..99);

And you can incorporate the multiplier with your push:
push(@array, $_ * 3) for(0..99);

-blyman