ExpressionResultType

Instructions

You can write a normal mathematical expression with the following operators:
num1 + num2Add num1 and num2
num1 - num2Subtract num2 from num1
num1 * num2Multiply num1 and num2
num1 / num2Divide num1 by num2
num1 ** num2Return num1 to power of num2
num1 ? num2Return num2 if num1 is non-zero, otherwise return 0
num1 : num2Return num2 if num1 is zero, otherwise return num1
- num - Negate num
A name followed by a value makes a function call. Currently only the following builtin functions are available:
sqrt numReturn square root of num
sin numReturn sinus of num
cos numReturn cosinus of num
tan numReturn tangent of num
abs numReturn absolute value of num