Help for this page

Select Code to Download


  1. or download this
    foreach my $move ( $LegalMoves->get_legal_moves( $Piece, $Start ) ) {
        # Do stuff here
    }
    
  2. or download this
    foreach my $Piece (@list_of_pieces) {
        foreach my $Start (@list_of_squares) {
    ...
            }
        }
    }