2843c0ad1e
^KT-55984
11 lines
213 B
Kotlin
Vendored
11 lines
213 B
Kotlin
Vendored
// WITH_STDLIB
|
|
|
|
fun box() : String{
|
|
for (iter in 0 until 10) {
|
|
val destination = ByteArray(8)
|
|
if (destination[0] != 0.toByte()) return "FAIL"
|
|
destination[0] = 1
|
|
}
|
|
return "OK"
|
|
}
|