mirror of
https://github.com/KaiserY/trpl-zh-cn
synced 2025-05-09 16:28:05 +08:00
7 lines
118 B
Rust
7 lines
118 B
Rust
|
fn main() {
|
||
|
// ANCHOR: here
|
||
|
let mut s = String::from("foo");
|
||
|
s.push_str("bar");
|
||
|
// ANCHOR_END: here
|
||
|
}
|