blob: 4bc4b60500aedccd5a271bc59d7c9aeb1b8a260d [file]
// 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"
}