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