mirror of
https://github.com/KaiserY/trpl-zh-cn
synced 2025-02-24 21:32:15 +08:00
8 lines
91 B
Rust
Executable File
8 lines
91 B
Rust
Executable File
fn main() {
|
|
let x = 5;
|
|
let y = &x;
|
|
|
|
assert_eq!(5, x);
|
|
assert_eq!(5, *y);
|
|
}
|