lua power operator code example
Example 1: lua arithmetic
-- O || ( ) Parenthesis
-- R || ^ Exponents
-- D || * Multiplication
-- E || / Division
-- R || + Addition
-- \/ - Subtraction
Example 2: to the power of in lua
math.pow (2, 8) --> 256