Run »
fun myFunction(x: Int, y: Int) = x + y fun main() { var result = myFunction(3, 5) println(result) }
8