trpl-zh-cn/listings/ch19-patterns-and-matching/listing-19-05/src/main.rs
2024-10-20 23:44:05 +08:00

6 lines
86 B
Rust

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