bitstackchess 0.1.1

A bitboard‐based chess game engine with 10 × u128 move history
Documentation
1
2
3
4
5
6
7
8
// src/main.rs

//! Entry point for the Chess CLI binary.
//! Simply calls `cli_adapter::run_cli()`.

fn main() {
    bitstackchess::cli_adapter::run_cli();
}