41a416da60
Delete all test methods (and empty test classes), since they'll be auto-generated
9 lines
111 B
Kotlin
9 lines
111 B
Kotlin
fun box(): String {
|
|
enum class K {
|
|
O
|
|
K
|
|
}
|
|
|
|
return K.O.toString() + K.K.toString()
|
|
}
|