mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-11 00:21:29 +00:00
8 lines
122 B
Kotlin
Vendored
8 lines
122 B
Kotlin
Vendored
fun box(): String {
|
|
val o = "O"
|
|
fun ok() = o + "K"
|
|
class OK {
|
|
val ok = ok()
|
|
}
|
|
return OK().ok
|
|
} |