Files
kotlin/idea/testData/refactoring/inline/function/expressionBody/Recursive.kt
2017-03-30 19:42:14 +03:00

1 line
64 B
Kotlin
Vendored

fun fact(x: Int): Int = if (x < 2) 1 else x * <caret>fact(x - 1)