RapydScript icon indicating copy to clipboard operation
RapydScript copied to clipboard

same-line statements sometimes allowed

Open atsepkov opened this issue 10 years ago • 0 comments

The following statement is valid:

one two = 1

And will compile to:

one;
two = 1;

This is not intentional and can easily be confused with one.two = 1

atsepkov avatar Mar 30 '15 01:03 atsepkov