neophys 0.1.0

an ap physics study attempt
Documentation
1
2
3
4
5
use std::any;

pub fn type_print<T>(a: &T) {
    println!("{:?}", any::type_name_of_val(a));
}