xiangyun 0.1.2

Xiangyun is the crate for random with Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
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());
}