mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-10 08:31:29 +00:00
14 lines
212 B
Kotlin
14 lines
212 B
Kotlin
|
|
import kotlin.test.assertEquals
|
|
|
|
fun box() : String {
|
|
val x = LongArray(5)
|
|
for (i in 0..4) {
|
|
x[i] = (i + 1).toLong()
|
|
}
|
|
|
|
assertEquals(15L, x.fold(0L) { x, y -> x + y })
|
|
|
|
return "OK"
|
|
}
|