Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/env perl
    use strict;
    ...
            $col = $col + 1;
        }
    }
    
  2. or download this
    #!/usr/bin/env perl
    use strict;
    ...
        print $num % 8 ? "\t" : "\n";
        $num = $num + 1;
    }
    
  3. or download this
    use strict;
    use warnings;
    for (my $x = 1; $x <= 64; $x += 1) {
        print $x, $x % 8 ? "\t" : "\n";
    }
    
  4. or download this
    perl -e 'print $_, $_ % 8 ? "\t" : "\n" for 1..64;'