mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-08 08:31:26 +00:00
7 lines
125 B
Kotlin
Vendored
7 lines
125 B
Kotlin
Vendored
fun box(): String {
|
|
val s = IntArray(1)
|
|
s[0] = 5
|
|
s[0] += 7
|
|
return if (s[0] == 12) "OK" else "Fail ${s[0]}"
|
|
}
|