tacklebox/tests/01_basic.c
2024-11-15 18:17:47 -06:00

13 lines
241 B
C

#include "../include/chess.h"
int main(void){
U64 state = rnd64(2);
ZHasher z;
z.init_state = state;
init_zhasher(&z);
Gamestate g;
parse_fen((char *)start_pos,&g);
print_state(&g,&z);
return EXIT_SUCCESS;
}