mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-03-10 08:31:29 +00:00
8 lines
128 B
Kotlin
Vendored
8 lines
128 B
Kotlin
Vendored
// FULL_JDK
|
|
// WITH_RUNTIME
|
|
|
|
fun box(): String {
|
|
val m = HashMap<String, String>()
|
|
m["ok"] = "OK"
|
|
return m["ok"]!!
|
|
} |