Help for this page

Select Code to Download


  1. or download this
    for ( 0 .. 19 ) {
        print "$_\n";
    }
    
  2. or download this
    for ( 0..7 )
    {
    ...
        if ( $Matrix[ $Col ][ $_ ] == 4 ) ...
      }
    }
    
  3. or download this
    for ( my $Col = 0; $Col < 8; $Col++ )
    {
    ...
        if ( $Matrix[ $Col ][ $Row ] == 4 ) ...
      }
    }