7 lines
107 B
Kotlin
Vendored
7 lines
107 B
Kotlin
Vendored
fun outer(a: Int) {
|
|
fun local(a: Int) {
|
|
if (a > 0) {
|
|
outer(a - 1)
|
|
}
|
|
}
|
|
} |