Because it tries to turn `a += b` into `a = a + b`...
# getting-started
d
Because it tries to turn
a += b
into
a = a + b
if you have a
plus
function defined.