Explain Functions In Kotlin?

devquora
devquora

Posted On: Feb 22, 2018

 

Kotlin functions are first-class functions that are easily stored in variables and data structures and can be pass as arguments and returned from other higher-order functions.

Sample function declaration and usage in Kotlin

fun double(x: Int): Int {
    return 2 * x
}
val result = double(2)

    Related Questions

    Please Login or Register to leave a response.

    Related Questions

    Kotlin Interview Questions

    Which type of Programming does Kotlin support?

    Which type of Programming does Kotlin support?..