RosettaCodeData/Task/String-append/Rust/string-append-2.rust
2020-02-17 23:21:07 -08:00

5 lines
117 B
Text

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