Syntax
pow(number, number)
Description
The pow() function returns the value of x to the power of y
Example
include("file")
println(pow(4,3))
println(pow(4.2, 3.1))
64
85.52100586479837
It is the equivalent of using 4 ** 3 and 4.2 ** 3.1
pow(number, number)
The pow() function returns the value of x to the power of y
include("file")
println(pow(4,3))
println(pow(4.2, 3.1))
64
85.52100586479837
It is the equivalent of using 4 ** 3 and 4.2 ** 3.1