mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-09 00:21:47 +00:00
11 lines
193 B
Kotlin
Vendored
11 lines
193 B
Kotlin
Vendored
import java.util.*
|
|
|
|
fun box(): String {
|
|
val hashMap = HashMap<String, Int>()
|
|
hashMap.put("one", 1)
|
|
hashMap.put("two", 2)
|
|
for ((key, value) in hashMap) {
|
|
}
|
|
|
|
return "OK"
|
|
} |