PDA

View Full Version : MX - Semicolons



grandsp5
August 5th, 2003, 07:12 PM
Is it just me or does MX not care so much about semicolons? Sometimes I forget to put them in and the code still works perfectly. It has happened more than once so I doubt it it a fluke.

senocular
August 5th, 2003, 07:38 PM
nope, semi-colons are not necessary for end of line termination as a newline will suffice

exceptions are for loops and lines with more than one statement ie

this._x = 10; this._y = 10

grandsp5
August 5th, 2003, 11:35 PM
ah i did not know that.