mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-10 15:53:46 +00:00
8 lines
161 B
Kotlin
8 lines
161 B
Kotlin
fun foo(s: String): String {
|
|
fun bar(count: Int): String =
|
|
if (count == 0) s else bar(count - 1)
|
|
return bar(10)
|
|
}
|
|
|
|
fun box(): String = foo("OK")
|