py_like/
lib.rs

1mod io;
2mod types;
3
4pub mod to;
5
6pub use io::{input, input_from, input_ok, input_prompt};
7pub use types::type_of;
8
9#[cfg(test)]
10mod test {
11    #[test]
12    fn it_works_too() {
13        use crate::type_of;
14        let a = 1.0;
15        println!("{}", type_of(&a));
16        println!("{}", type_of(&type_of(&a)));
17    }
18}