trpl-zh-cn/listings/ch08-common-collections/listing-08-18/src/main.rs
2022-02-07 16:14:15 +08:00

8 lines
222 B
Rust
Executable File

fn main() {
// ANCHOR: here
let s1 = String::from("Hello, ");
let s2 = String::from("world!");
let s3 = s1 + &s2; // 注意 s1 被移动了,不能继续使用
// ANCHOR_END: here
}