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