1
2
3
4
5
6
7
8
9
10
11
pub mod entro_spin;

#[cfg(test)]
mod test {
    use entro_spin::entro_spin;

    #[test]
    fn test_entro_spin() {
        entro_spin();
    }
}