98c54f39bb
Include kt* files into formatter test generation, to test scripting formatting
12 lines
160 B
Kotlin
12 lines
160 B
Kotlin
// expected: rv: 3628800
|
|
|
|
fun factorial(n: Int): Int {
|
|
var product = 1
|
|
for (i in 1..n) {
|
|
product *= i
|
|
}
|
|
return product
|
|
}
|
|
|
|
factorial(10)
|