xiangyun 0.1.2

Xiangyun is the crate for random with Rust
Documentation
extern crate xiangyun;

use xiangyun::Rand;

fn main() {
    let mut foo = Rand::Basic(1);
    println!("{}, {}, {}, {}, {}",
             foo.rand(),
             foo.rand(),
             foo.rand(),
             foo.rand(),
             foo.rand());
}