aboutsummaryrefslogtreecommitdiff
path: root/src/main.cpp
blob: 25082bec4a90888569c048db35f1d554b979d01c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#include "misc.hpp"
#include "uci.hpp"
#include "zobrist/zobrist.hpp"
#include <iostream>

int main() {
  InitZobrist();

  std::cout << engine_info();

  Uci();
  return 0;
}