7 lines
90 B
Plaintext
7 lines
90 B
Plaintext
// OPTION: 1
|
|
fun foo(n: Int): Int {
|
|
return if (n > 0) {
|
|
n + 10
|
|
<caret> }
|
|
}
|