mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-13 00:21:28 +00:00
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)
|
|
}
|
|
} |