6 lines
86 B
Kotlin
Vendored
6 lines
86 B
Kotlin
Vendored
fun foo(i: Int): Int {
|
|
return <caret>if (i > 0)
|
|
i
|
|
else
|
|
i + 1
|
|
} |