Help for this page

Select Code to Download


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