Skip to content

v1.4.0

Latest

Choose a tag to compare

@valoeghese valoeghese released this 13 Sep 03:28
  • New Trig and Maths builtin functions (e.g. SIN, ATAN, COSH, SQRT, FLOOR)
  • New operators: ** (exponent) and ^ (xor)
  • Macros! (@NathanSnail) define a macro with :DEFINE NAME "expression" and expand it with :EXPAND NAME (parameters). Parameters can be done with {{1}} etc. The macros are part of the new preprocessor.
  • Builtin functions that take in one input (like SQRT, ROUND, SIN, etc...) can now be used inline! Can be applied to an expression in brackets (e.g. a = SIN (5+2*a)) or to a number, variable, or string without brackets. (e.g. a = COS b)