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
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)