summaryrefslogtreecommitdiff
path: root/src/main.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/main.c')
-rw-r--r--src/main.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/main.c b/src/main.c
index 297ef20..6c05aa2 100644
--- a/src/main.c
+++ b/src/main.c
@@ -1,7 +1,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;
}