Help for this page

Select Code to Download


  1. or download this
    for i = 1 to 10
    myarray(i) = myarray(i) + 1
    next i
    
  2. or download this
    my $i;
    my @array = (1, 5, 6, 9, 57);
    ...
    {
        ++$array[$i];
    }
    
  3. or download this
    foreach $bar(@bar)
    {
        ++$bar;
    }