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

6 lines
117 B
Rust

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