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) |