5 lines
105 B
Kotlin
Vendored
5 lines
105 B
Kotlin
Vendored
fun f(a: Int) {
|
|
if (a > 0) {
|
|
<lineMarker descr="Recursive call">f</lineMarker>(a - 1)
|
|
}
|
|
} |