While programming in C++, I often confuse both \"+=\" and \"=+\", the former being the operator I actually mean. Visual Studio seems to accept both, yet they behave differen
a =+ b means a = +b means a = b
a =+ b
a = +b
a = b