in reply to Initialization of arrays
use strict; use warnings; use Data::Dumper; my @x; @x[0..3] = map {1}0..3; # this map returns a list of 1's (4 elements) print Dumper(\@x); __END__ $VAR1 = [ 1, 1, 1, 1 ];
BTW, you had @x[1..3] I changed it @x[0..3]. I felt that is probably what you want as the array index starts with zero. If you are sure you don't need zero then you can modify my code.
-SK
|
---|