mirror of
https://github.com/KaiserY/trpl-zh-cn
synced 2025-02-24 21:32:15 +08:00
9 lines
127 B
Rust
9 lines
127 B
Rust
|
fn main() {
|
||
|
// ANCHOR: here
|
||
|
let x = 5;
|
||
|
let y = x;
|
||
|
|
||
|
println!("x = {}, y = {}", x, y);
|
||
|
// ANCHOR_END: here
|
||
|
}
|