6 lines
92 B
Kotlin
6 lines
92 B
Kotlin
tailRecursive fun foo() {
|
|
return if (true) {
|
|
(foo())
|
|
}
|
|
else Unit.VALUE
|
|
} |