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

7 lines
117 B
Plaintext

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