5 lines
72 B
Kotlin
5 lines
72 B
Kotlin
fun local_variable(a: Int) : Int {
|
|
var b = 0
|
|
b = a + 11
|
|
return b
|
|
} |