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

7 lines
118 B
Rust
Raw Normal View History

2022-02-06 16:43:51 +08:00
fn main() {
// ANCHOR: here
let mut s = String::from("foo");
s.push_str("bar");
// ANCHOR_END: here
}