#include "board.hpp" #include 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; }