entro_spin/
lib.rs

1pub mod entro_spin;
2
3#[cfg(test)]
4mod test {
5    use entro_spin::entro_spin;
6
7    #[test]
8    fn test_entro_spin() {
9        entro_spin();
10    }
11}