6 lines
63 B
Kotlin
6 lines
63 B
Kotlin
fun minus_eq(a: Int): Int {
|
|
var b = 11
|
|
b -= a
|
|
return b
|
|
}
|