6 lines
80 B
Plaintext
Vendored
6 lines
80 B
Plaintext
Vendored
fun foo(i: Int): Int {
|
|
return if (i <= 0)
|
|
i + 1
|
|
else
|
|
i
|
|
} |