41a416da60
Delete all test methods (and empty test classes), since they'll be auto-generated
8 lines
110 B
Kotlin
8 lines
110 B
Kotlin
fun box(): String {
|
|
fun rmrf(i: Int) {
|
|
if (i > 0) rmrf(i - 1)
|
|
}
|
|
rmrf(5)
|
|
return "OK"
|
|
}
|