5 lines
69 B
Kotlin
5 lines
69 B
Kotlin
private var x = "O"
|
|
private fun f() = "K"
|
|
|
|
fun box() = { x + f() }()
|