Name
Pow -- calculate x raised to the power of y (V1.5)
Synopsis
result = Pow(x, y)
Function
This function calculates x raised to the power of y.

Inputs
x
base
y
exponent
Results
result
calculation result
Example
a = Pow(2, 8)
This returns 256.

Show TOC