mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-12 15:53:40 +00:00
16 lines
182 B
Kotlin
Vendored
16 lines
182 B
Kotlin
Vendored
//KT-3276
|
|
|
|
fun box(): String {
|
|
fun rec(n : Int) {
|
|
val x = { m : Int ->
|
|
if (n > 0) rec(n - 1)
|
|
}
|
|
|
|
x(0)
|
|
}
|
|
|
|
rec(5)
|
|
|
|
return "OK"
|
|
}
|