Add multiple parameters
This commit is contained in:
parent
4bc2d864e1
commit
683e905215
1 changed files with 3 additions and 3 deletions
|
@ -1,7 +1,7 @@
|
||||||
fn main() {
|
fn main() {
|
||||||
another_function(5);
|
print_labeled_measurement(5, 'h');
|
||||||
}
|
}
|
||||||
|
|
||||||
fn another_function(x: i32) {
|
fn print_labeled_measurement(value: i32, unit_label: char) {
|
||||||
println!("The value of x is: {x}");
|
println!("The measurement is: {value}{unit_label}");
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue