trpl-zh-cn/listings/ch18-patterns-and-matching/listing-18-05/src/main.rs
2022-02-06 16:43:51 +08:00

6 lines
86 B
Rust
Executable File

fn main() {
// ANCHOR: here
let (x, y) = (1, 2, 3);
// ANCHOR_END: here
}