trpl-zh-cn/listings/ch08-common-collections/listing-08-18/src/main.rs

8 lines
232 B
Rust
Raw Normal View History

2022-02-06 16:43:51 +08:00
fn main() {
// ANCHOR: here
let s1 = String::from("Hello, ");
let s2 = String::from("world!");
let s3 = s1 + &s2; // note s1 has been moved here and can no longer be used
// ANCHOR_END: here
}