mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-10 00:21:35 +00:00
9 lines
136 B
Kotlin
9 lines
136 B
Kotlin
tailRecursive fun foo(x: Int) {
|
|
if (x == 0) return
|
|
return (foo(x - 1))
|
|
}
|
|
|
|
fun box(): String {
|
|
foo(1000000)
|
|
return "OK"
|
|
} |