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