Kotlin - Functions
What will be the output of the following Kotlin code?
fun operate(x: Int, y: Int, op: (Int, Int) -> Int): Int {
return op(x, y)
}
fun main() {
val sum = operate(5, 3) { a, b -> a + b }
println(sum)
}