mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-10 08:31:29 +00:00
5 lines
69 B
Kotlin
5 lines
69 B
Kotlin
private var x = "O"
|
|
private fun f() = "K"
|
|
|
|
fun box() = { x + f() }()
|