8 lines
104 B
Kotlin
8 lines
104 B
Kotlin
tailRecursive fun test() : Int {
|
|
try {
|
|
// do nothing
|
|
} finally {
|
|
test()
|
|
}
|
|
}
|