RapydScript
RapydScript copied to clipboard
same-line statements sometimes allowed
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