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