bustabit 0.2.1

The utility for verification of Bustabit games.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
extern crate bustabit;

use bustabit::Game;


fn main() {
    let s = String::from("b2acd37fbdb5509926ab5d7329704c840f8467266c90019682f3b260a029bdba");

    let mut game:Game = Game::new(&s).unwrap();
    for g in game.into_iter().take(20) {
        println!("{}", g);
    }
}