trpl-zh-cn/listings/ch18-patterns-and-matching/listing-18-17/src/main.rs

8 lines
117 B
Rust
Raw Normal View History

2022-02-06 16:43:51 +08:00
fn foo(_: i32, y: i32) {
println!("This code only uses the y parameter: {}", y);
}
fn main() {
foo(3, 4);
}