


actually it's worse than that!
the next character is mangled:
x=1 x+=5qq=2 -- parsed as x+=5 q=2 print(qq) print(q) |
runs fine and prints nil 2 (instead of 2 nil)



That's not true at all.
i= 3 i=1+ 2 i=1 +2 i =3 |
All valid code
[Please log in to post a comment]