mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-09 00:21:47 +00:00
11 lines
176 B
Kotlin
11 lines
176 B
Kotlin
fun test() {
|
|
[tailRecursive] fun g3(counter : Int) {
|
|
if (counter > 0) { g3(counter - 1) }
|
|
}
|
|
g3(1000000)
|
|
}
|
|
|
|
fun box() : String {
|
|
test()
|
|
return "OK"
|
|
} |