trpl-zh-cn/listings/ch19-patterns-and-matching/listing-19-05/src/main.rs

6 lines
86 B
Rust
Raw Normal View History

2022-02-06 16:43:51 +08:00
fn main() {
// ANCHOR: here
let (x, y) = (1, 2, 3);
// ANCHOR_END: here
}