RosettaCodeData/Task/String-concatenation/Rust/string-concatenation.rust
2015-11-18 06:14:39 +00:00

7 lines
121 B
Text

fn main() {
let s = "hello".to_owned();
println!("{}", s);
let s1 = s + " world";
println!("{}", s1);
}