mirror of
https://github.com/KaiserY/trpl-zh-cn
synced 2025-02-24 13:22:19 +08:00
7 lines
111 B
Rust
7 lines
111 B
Rust
|
fn main() {
|
||
|
// ANCHOR: here
|
||
|
let s1 = String::from("hello");
|
||
|
let s2 = s1;
|
||
|
// ANCHOR_END: here
|
||
|
}
|