You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Ignore whitespace between function name and paren in function refs (do same for array refs), so syntax isn't so strict.
Slight optimizations throughout.
Add Lua .. string concatenation operator.
POTENTIAL BREAKING CHANGE: the "+" operator now does a better job identifying strings containing numbers as numbers, and handling the operation as addition rather than string concatenation. I doubt this will present any issues except for (hopefully rare) cases where you actually want "123"+"456" to equal "123456". The .. operator (Lua string concatentation) has been added for deterministic handling as strings (e.g. '123'..'456' will always produce the string '123456' and not the number 579).