9 lines
119 B
Kotlin
9 lines
119 B
Kotlin
// SIBLING:
|
|
fun foo(a: Int): Int {
|
|
var b: Int = 1
|
|
|
|
<selection>b += a
|
|
println(b)</selection>
|
|
|
|
return b
|
|
} |