blob: 7c70e7cf92e3afc317064cd6e754a914ecca8b6c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#include <stdio.h>
#include "board.h"
#include "print.h"
#include "types.h"
int main() {
Board b = board_init();
print_board(b, WHITE);
print_board(b, BLACK);
board_delete(b);
return 0;
}
|