Help for this page
my @array = (1..20); my $i = 0; ... print "$_\n"; last if ++$i >= 10; }
my @array = (1..20); print "$_\n" for @array[0..9];