Help for this page

Select Code to Download


  1. or download this
    next unless $. == $array[$i++];
    
  2. or download this
    next unless $. == $array[$i];
    $i++;
    
  3. or download this
    next unless $. == $array[$i++];
    print OUT $_;
    
  4. or download this
    next unless $. == $array[$i];
    print $_;
    ++$i < @array or last;