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

6 lines
117 B
Text

use std::ops::Add;
fn main(){
let hello = String::from("Hello world");
println!("{}", hello.add("!!!!"));
}