pub fn type_name<T>(_: &T) -> String
3fn main() { 4 tlog!("hello"); 5 6 let n = 3; 7 tlog!("5 x 7 = {}, {}", 5 * 7, type_name(&n)); 8}