Files
kotlin-fork/compiler/testData/ir/irCfg/loop/factorial.kt
T
2016-10-18 09:09:48 +03:00

7 lines
115 B
Kotlin
Vendored

fun factorial(i: Int): Int {
var result = 1
for (j in 2..i) {
result *= j
}
return result
}