trpl-zh-cn/listings/ch08-common-collections/listing-08-15/src/main.rs
2022-02-06 16:43:51 +08:00

7 lines
118 B
Rust
Executable File

fn main() {
// ANCHOR: here
let mut s = String::from("foo");
s.push_str("bar");
// ANCHOR_END: here
}