Help for this page
my @items = ( 0..5 ); my $index = 0; ... } $index++; }
my $index = 0; while ($index <= $#items ) { ... $index++; } }