- or download this
for (my $i=0;$i<@array;$i++)
{
$array[$i] = 3; # dummy value
# do your stuff, $i being the counter
}
- or download this
foreach (0..@array)
{
$array[$_] = 3;
# do your stuff, $_ being the counter
}
- or download this
foreach(@array)
{
# use $_ as counter
# do your stuff
}