RosettaCodeData/Task/String-concatenation/Rust/string-concatenation.rust

8 lines
121 B
Text
Raw Permalink Normal View History

2013-10-27 22:24:23 +00:00
fn main() {
2015-11-18 06:14:39 +00:00
let s = "hello".to_owned();
2015-02-20 00:35:01 -05:00
println!("{}", s);
2013-10-27 22:24:23 +00:00
let s1 = s + " world";
2015-02-20 00:35:01 -05:00
println!("{}", s1);
2013-10-27 22:24:23 +00:00
}