Skip to content

Version 0.9.9

Choose a tag to compare

@toggledbits toggledbits released this 06 Jul 13:31
· 13 commits to master since this release
  • 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).