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