mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-08 15:53:19 +00:00
12 lines
191 B
Kotlin
Vendored
12 lines
191 B
Kotlin
Vendored
// WITH_RUNTIME
|
|
|
|
fun box(): String {
|
|
val hashMap = HashMap<String, Int>()
|
|
hashMap.put("one", 1)
|
|
hashMap.put("two", 2)
|
|
for ((key, value) in hashMap) {
|
|
}
|
|
|
|
return "OK"
|
|
}
|