mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-10 00:21:35 +00:00
9 lines
130 B
Kotlin
9 lines
130 B
Kotlin
class A {
|
|
class object {
|
|
fun values() = "O"
|
|
fun valueOf() = "K"
|
|
}
|
|
}
|
|
|
|
fun box() = A.values() + A.valueOf()
|