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