Help for this page

Select Code to Download


  1. or download this
    foreach ( 1 .. 64 ) {
      print "\n" if ( $_ - 1 ) % 8 == 0;
      print "$_ ";
    }
    
  2. or download this
    foreach ( 1 .. 64 ) {
      print "$_ ";
      print "\n" if ( $_ - 1 ) % 8 == 7;
    }