chessrs 0.1.0

A command line implementation for the game of chess
Documentation
1
2
3
4
5
6
7
8
use chessrs::main_loop;

fn main() {
    // TODO: Add command line arguments

    // Runs the game
    main_loop();
}