1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
mod io;
mod types;

pub mod to;

pub use io::{input, input_from, input_ok, input_prompt};
pub use types::type_of;

#[cfg(test)]
mod test {
    #[test]
    fn it_works_too() {
        use crate::type_of;
        let a = 1.0;
        println!("{}", type_of(&a));
        println!("{}", type_of(&type_of(&a)));
    }
}