8 lines
127 B
Kotlin
Vendored
8 lines
127 B
Kotlin
Vendored
class My {
|
|
companion object {
|
|
val my: String = "O"
|
|
get() = { field }() + "K"
|
|
}
|
|
}
|
|
|
|
fun box() = My.my |