1
2
3
4
5
6
7
8
9
10
11
12
13
14
use clap::Parser;

#[derive(Parser, Debug)]
#[command(version, about)]
struct Args {
    // TODO: Book.
    // TODO: Number of games.
    // TODO: Output file.
    // TODO: Tablebase path.
}

fn main() {
    todo!()
}