11 lines
142 B
Kotlin
Vendored
11 lines
142 B
Kotlin
Vendored
class Test {
|
|
private companion object {
|
|
val res = "OK"
|
|
}
|
|
fun res() = res
|
|
}
|
|
|
|
fun box(): String {
|
|
return Test().res()
|
|
}
|