mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-14 08:31:35 +00:00
1 line
64 B
Kotlin
Vendored
1 line
64 B
Kotlin
Vendored
fun fact(x: Int): Int = if (x < 2) 1 else x * <caret>fact(x - 1) |