summaryrefslogtreecommitdiff
path: root/src/main.c
blob: 6c05aa2328156e0b6aa91a26dd456380944d4721 (plain)
1
2
3
4
5
6
7
8
9
10
11
#include <stdio.h>
#include "bitboard.h"
#include "search.h"

int main() {
  moves_t moves = moves_init();
  position_t position = position_starting();
  get_pawn_moves(&moves, position);
  printf("Hello World\n");
  return 0;
}