mirror of
https://github.com/KaiserY/trpl-zh-cn
synced 2025-05-01 18:58:44 +08:00
8 lines
117 B
Rust
Executable File
8 lines
117 B
Rust
Executable File
fn foo(_: i32, y: i32) {
|
|
println!("This code only uses the y parameter: {}", y);
|
|
}
|
|
|
|
fn main() {
|
|
foo(3, 4);
|
|
}
|