summaryrefslogtreecommitdiff
path: root/main.cpp
diff options
context:
space:
mode:
authorLoic Guegan <manzerbredes@mailbox.org>2022-01-30 20:19:02 +0100
committerLoic Guegan <manzerbredes@mailbox.org>2022-02-01 19:58:14 +0100
commitf5d9fe6211bd397deb0ac19b634f551edfa0f6b8 (patch)
tree3568c011bdd4dcd201db8ca6ee098da70a1fd53f /main.cpp
Initialize project
Diffstat (limited to 'main.cpp')
-rw-r--r--main.cpp15
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);
+}