8 lines
98 B
Kotlin
8 lines
98 B
Kotlin
tailRecursive fun foo() {
|
|
try {
|
|
return foo()
|
|
}
|
|
catch (e: Throwable) {
|
|
}
|
|
}
|