Answers for "define a function in kotlin?"

2

how to write a function in kotlin

// Use 'fun' keyword to declare function
// 'num' is the parameter and is of type Int
// The ':Int' indicates the return type
fun square(num: Int):Int {
    return num * num
}
Posted by: Guest on November-06-2020
2

kotlin function

fun sum(a: Int, b: Int): Int {
 return a + b
}
Posted by: Guest on January-15-2021

Browse Popular Code Answers by Language