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