Format a string using a format specifier.
let who = "World"; let string = format!("Hello {}", who); assert_eq!(string, "Hello World");