Help for this page

Select Code to Download


  1. or download this
    my @items = ( 0..5 );
    my $index = 0;
    ...
      }
      $index++;
    }
    
  2. or download this
    my $index = 0;
    while ($index <= $#items ) {
    ...
        $index++;
      }
    }