madan
0
Q:

kotlin higher order functions

They are called lambdas ;)
1
fun main() {
    higherOrderSequence(5, ::square)

}

fun higherOrderSequence(num: Int, myFunc: (Int) -> Int) {
    // A function declared as an argument must specify input and return type

    for (x in 1..num) {
        print("${myFunc(x)} ")
    }
    println()
}

fun square(num: Int):Int {
    return num * num
}
0

New to Communities?

Join the community