mirror of
https://github.com/KaiserY/trpl-zh-cn
synced 2025-04-22 05:18:04 +08:00
9 lines
158 B
Rust
9 lines
158 B
Rust
fn main() {
|
|
// ANCHOR: here
|
|
let s1 = String::from("hello");
|
|
let s2 = s1.clone();
|
|
|
|
println!("s1 = {s1}, s2 = {s2}");
|
|
// ANCHOR_END: here
|
|
}
|