41a416da60
Delete all test methods (and empty test classes), since they'll be auto-generated
7 lines
125 B
Kotlin
7 lines
125 B
Kotlin
fun box(): String {
|
|
val s = IntArray(1)
|
|
s[0] = 5
|
|
s[0] += 7
|
|
return if (s[0] == 12) "OK" else "Fail ${s[0]}"
|
|
}
|