diff options
Diffstat (limited to 'main.cpp')
| -rw-r--r-- | main.cpp | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/main.cpp b/main.cpp new file mode 100644 index 0000000..ee26287 --- /dev/null +++ b/main.cpp @@ -0,0 +1,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); +} |
