mirror of
https://github.com/KaiserY/trpl-zh-cn
synced 2025-05-05 13:08:05 +08:00
6 lines
86 B
Rust
6 lines
86 B
Rust
|
fn main() {
|
||
|
// ANCHOR: here
|
||
|
let (x, y) = (1, 2, 3);
|
||
|
// ANCHOR_END: here
|
||
|
}
|