Help for this page

Select Code to Download


  1. or download this
    my $first = 1;
    @array = map {
    ...
          $_
       }
    } @array;
    
  2. or download this
    my $first = 1;
    @array = map {
    ...
       $first ||= @a-1;
       @a
    } @array
    
  3. or download this
    foreach (0..$#array) {
       if ($array[$_] eq "c") {
    ...
          last;      
       }
    }