function with argument
fn main() {
another_function(5, 'h')
}
fn another_function (value: i32, unit: char) {
println!("The value is {}{}", value, unit)
}INFO
fn main() {
another_function(5, 'h')
}
fn another_function (value: i32, unit: char) {
println!("The value is {}{}", value, unit)
}