Help for this page

Select Code to Download


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