anglerfry 0.1.0

A small, readable UCI chess engine to build your own on top of.
1
2
3
4
5
6
7
8
9
10
//! Anglerfry, a UCI chess engine.

mod search;
mod strategy;
mod uci;

fn main() {
    env_logger::init();
    uci::run();
}