fn log(msg: String) { println!("{}", msg); } fn main() { let s = String::from("this is a log message"); log(s); println!("length is {}", s.len()); }