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