Purpose
Raises a number to the power of a second number.
For example, raising a number to the power of 2 gives the square of the number.
Syntax
Number1 ^ Number2
Example
Sub Main()
Print "10 squared is:", 10^2
Print "4 cubed is:", 4^3
Print "6.4 to the power of 1.5 is ", 6.4^1.5
End Sub
|