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