mirror of
https://github.com/KaiserY/trpl-zh-cn
synced 2025-02-25 05:42:18 +08:00
5 lines
49 B
Rust
5 lines
49 B
Rust
|
fn main() {
|
||
|
let x = 5;
|
||
|
let y = &mut x;
|
||
|
}
|