11 lines
230 B
C++
11 lines
230 B
C++
#include "board.hpp"
|
|
|
|
#include <iostream>
|
|
|
|
int main(int argc, char* argv[]) {
|
|
std::string pos =
|
|
"rnbqkbnr/pppppppp/8/8/8/8/PPPPPPPP/RNBQKBNR w KQkq - 0 1";
|
|
Board b = Board::setup_fen_position(pos);
|
|
return 0;
|
|
}
|