mirror of
https://github.com/KaiserY/trpl-zh-cn
synced 2025-05-11 01:38:29 +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);
|
|
}
|