mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-16 15:53:55 +00:00
16 lines
253 B
Kotlin
Vendored
16 lines
253 B
Kotlin
Vendored
// KJS_WITH_FULL_RUNTIME
|
|
// WITH_RUNTIME
|
|
|
|
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"
|
|
}
|