rust-sadari-cli 0.1.1

rust-sadari-cli is sadari game (Ghost leg in other words) based on terminal. rust-sadari can take file as input or interaction from dynamic user input. Wish you good luck! Ghost leg is lottery game to find random pairs between two sets.
Documentation
1
2
3
4
5
6
7
8
9
10
11
mod calc;
mod event;
#[allow(dead_code)]
mod tools;

mod draw;

pub use calc::*;
pub use draw::*;
pub use event::*;
pub use tools::*;