aboutsummaryrefslogtreecommitdiff
path: root/src/main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/main.cpp')
-rw-r--r--src/main.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/main.cpp b/src/main.cpp
index 36014b9..25082be 100644
--- a/src/main.cpp
+++ b/src/main.cpp
@@ -1,9 +1,13 @@
+#include "misc.hpp"
#include "uci.hpp"
#include "zobrist/zobrist.hpp"
+#include <iostream>
int main() {
InitZobrist();
+ std::cout << engine_info();
+
Uci();
return 0;
}