fn main() { let mut string = String::from("Hello"); string.push_str(" World"); println!("{}", string); }