mirror of
https://github.com/KaiserY/trpl-zh-cn
synced 2025-05-23 18:18:13 +08:00
8 lines
178 B
Rust
8 lines
178 B
Rust
|
fn main() {
|
||
|
print_labeled_measurement(5, 'h');
|
||
|
}
|
||
|
|
||
|
fn print_labeled_measurement(value: i32, unit_label: char) {
|
||
|
println!("The measurement is: {}{}", value, unit_label);
|
||
|
}
|