List of expression elements / Arithmetic operators |
The ** operator calculates an exponentiation.
num-expr ** int-expr
The ** operator returns a value calculated by raising the left-hand operand to a power corresponding to the integer part of the right-hand operand.
If the right operand is a number with a decimal part, it is rounded to a whole integer before computing the exponentiation.
MAIN DISPLAY 2 ** 8 DISPLAY 10 ** 4 END MAIN