mersenne_twister_m/
lib.rs

1#![no_std]
2
3mod mt19937;
4pub use mt19937::MT19937;
5pub use mt19937::DEFAULT_SEED;
6pub use mt19937::DEFAULT_SEED_PS2;
7pub use mt19937::MTState;
8
9#[cfg(test)]
10mod tests {
11    #[test]
12    fn it_works() {
13        let result = 2 + 2;
14        assert_eq!(result, 4);
15    }
16}