Replace the operators with a single one if that is the intention [source,go] ---- var target, num = -5, 3 target -= num // target = -8 ---- Or fix the spacing to avoid confusion [source,go] ---- var target, num = -5, 3 target = -num // target = -3 ----