summaryrefslogtreecommitdiff
path: root/main.c
blob: 16e656fc76d451eda858d47d8e2f05ae9da7b835 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#include <stdio.h>

#include "board.h"
#include "print.h"
#include "types.h"

int main() {
    Board b = board_init();
    print_board(b);
    board_delete(b);

    return 0;
}
nihil fit ex nihilo