RosettaCodeData/Task/String-append/Rust/string-append-2.rust

6 lines
117 B
Plaintext

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