aboutsummaryrefslogtreecommitdiff
path: root/src/main.cpp
diff options
context:
space:
mode:
authorAdam <adammegarules1@gmail.com>2026-07-31 13:22:11 +0200
committerAdam <adammegarules1@gmail.com>2026-07-31 13:22:11 +0200
commit2d148023f02056916fa5b88f567e09e6ba1a2915 (patch)
treeb7ac743f384a604061dfe25b8ac7180254e4960f /src/main.cpp
parent6af6acefdece08bb786640f5f3e9618ae04881da (diff)
making it be mode ready
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;
}