10 lines
141 B
Kotlin
Vendored
10 lines
141 B
Kotlin
Vendored
class A {
|
|
val value: String
|
|
get() = field + "K"
|
|
|
|
constructor(o: String) {
|
|
value = o
|
|
}
|
|
}
|
|
|
|
fun box() = A("O").value |