blob: 79debb72bdfa5d502cf2657539fe87c5b43b368e [file]
fun box(): String {
fun rmrf(i: Int) {
if (i > 0) rmrf(i - 1)
}
rmrf(5)
return "OK"
}