Is this correct syntax and should this work? ``` f...
# announcements
n
Is this correct syntax and should this work?
Copy code
fun a(i: Int) { println(i * i) }
fun b(i: Int) { println(i + i) }

fun main(args: Array<String>) {
    val choice = "a"
    when (choice) {
        "a" -> ::a
        else -> ::b
    }(42)
}