neumann 0.1.0

Game Theory algorithms in Rust.
Documentation
1
2
3
4
5
/// Games that can be played in an interactive manner.
pub trait Playable {
    /// Starts a REPL to play the game.
    fn play(&self);
}