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

#include <cstdlib>
#include <ctime>

int main() {
  InitZobrist();
  srand(time(0));

  Uci();
  return 0;
}