POWER function that raises first argument to the power of the second.
MATH
POWER value1 value2
value1 - the base value
value2 - the exponent
This method has no refinements
POWER raises first argument to the power of the second. POWER is prefix notation. Meta also can handle the infix operator ^ for this.
POWER as prefix
result: POWER 2 4
with result of 16.
ADD as infix
result: 2 ^ 4
with also a result of 16
SUBTRACT
MULTIPLY
ADD
DIVIDE
MODULO