Syntaxset bigNum to 3^30 Return valuereal DescriptionThis binary arithmetic operator raises the operand to its left to the power on its right. It always returns a real value type. The operands can either be integers or reals. Examplesset intNum to 10 ^ 2 -- intNum evaluates to 100, an integer set realNum to 10.1 ^ 2 -- realNum is returned as a real type, 102.01 |