kotlin function return code example
Example 1: return type in kotlin function
//Function having two Int parameters with Int return type
fun sum(a: Int, b: Int): Int {
return a + b
}
Example 2: kotlin function return
fun sum(a: Int, b: Int): Int {
return a + b
}