stickfosh/cpp/src/main.cpp
2025-02-02 18:17:19 +01:00

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;
}