249af96d3c
Replaces a statement of the form a = a + b with a statement of the form a += b.
4 lines
38 B
Plaintext
4 lines
38 B
Plaintext
fun foo() {
|
|
var x = 0
|
|
x -= 1
|
|
} |