RosettaCodeData/Task/Function-definition/Kotlin/function-definition.kts

8 lines
142 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
// One-liner
fun multiply(a: Int, b: Int) = a * b
// Proper function definition
fun multiplyProper(a: Int, b: Int): Int {
return a * b
}