let s = i.to_string(); // also let s = format!("{}",i);
let x: u32 = 10; let s: String = x.to_string(); println!("{}", s);