7 lines
88 B
V
7 lines
88 B
V
fn multiply(a f64, b f64) f64 {
|
|
return a * b
|
|
}
|
|
|
|
fn main() {
|
|
print(multiply(5, 6))
|
|
}
|