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