summaryrefslogtreecommitdiff
path: root/main.cpp
blob: ee26287f7b2e619ea2759c51622efadc5659a433 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#include <iostream>
#include <string>
#include "UCI.hpp"

using namespace uciadapter;
using namespace std;

int main() {

  UCI u("/home/loic/Stockfish-sf_14.1/src/stockfish");

  std::cout << u.GetBuffer() << std::endl;

  return (0);
}