Skip to content

Higher Order Functions: Examples

Devrath edited this page Feb 11, 2024 · 1 revision

Example-1: Invoking a variable

Code

val action :() -> Unit = { println("Hello World!!")  }

fun main(args: Array<String>) {
    // Calling the action
    action()
    action.invoke()
}

Output

Hello World!!
Hello World!!

Example-2: Consuming action

Code

val action :() -> Unit = { println("Hello World!!")  }

fun main(args: Array<String>) {
    // Calling the action
    consumeAction(action)
}

fun consumeAction( action :()-> Unit ){
    action()
    action.invoke()
}

Output

Hello World!!
Hello World!!
Clone this wiki locally