10 lines
175 B
Kotlin
Vendored
10 lines
175 B
Kotlin
Vendored
// KJS_WITH_FULL_RUNTIME
|
|
// WITH_RUNTIME
|
|
|
|
var map: Map<Any, Set<Any>> = emptyMap()
|
|
|
|
fun box(): String {
|
|
map += "OK" to emptySet()
|
|
return map.keys.first().toString()
|
|
}
|