console-games 1.1.7

A collection of console games written in Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
mod guess_the_number;
pub use guess_the_number::*;
mod guess_the_word;
pub use guess_the_word::*;
mod word_type;
pub use word_type::*;
mod four_in_a_line;
pub use four_in_a_line::*;
mod tower_of_hanoi;
pub use tower_of_hanoi::*;
mod mine_sweeper;
pub use mine_sweeper::*;