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

6 lines
89 B
Rust
Executable File

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