5 lines
61 B
Kotlin
5 lines
61 B
Kotlin
fun plus_eq(a: Int): Int {
|
|
var b = 11
|
|
b += a
|
|
return b
|
|
} |