Your browser does not seem to support JavaScript. As a result, your viewing experience will be diminished, and you have been placed in read-only mode.
Please download a browser that supports JavaScript, or enable it if it's disabled (i.e. NoScript).
assignment-bug : int myInt = 5; myInt =- 2; // Bug ! myInt is now -2 instead of the expected 3 ! Of course, the correct syntax is : myInt -= 2; // This makes myInt = 3.