7 lines
120 B
Kotlin
7 lines
120 B
Kotlin
fun foo(a: Int, b: Int): Int {
|
|
fun bar() {
|
|
return <selection>a + b - 1</selection>
|
|
}
|
|
|
|
return bar()
|
|
} |