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