mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-14 08:31:35 +00:00
4 lines
109 B
Plaintext
Vendored
4 lines
109 B
Plaintext
Vendored
fun fact(x: Int): Int = if (x < 2) 1 else {
|
|
val x1 = x - 1
|
|
x * if (x1 < 2) 1 else x1 * fact(x1 - 1)
|
|
} |