9 lines
150 B
Kotlin
9 lines
150 B
Kotlin
fun foo(a: Int): Int {
|
|
val b: Int = 1
|
|
val c: Int = 1
|
|
|
|
<selection>println(a)
|
|
println(b)
|
|
println</selection>(c)
|
|
return a + b*c
|
|
} |