Help for this page

Select Code to Download


  1. or download this
    push @group, $entire_file[$i] until ( $i % 5 == 0 );
    
  2. or download this
    while( $i % 5 != 0 ) {
      push @group, $entire_file[$i];
    }
    
  3. or download this
    push @group, $entire_file[$i] unless $i % 5 == 0;