Syntax
pow10(number)
Description
The pow10() function returns 10 to the power of n, the base-10 exponential of n.
Example
include("math")
println(pow10(2))
println(pow10(3))
100
1000
pow10(number)
The pow10() function returns 10 to the power of n, the base-10 exponential of n.
include("math")
println(pow10(2))
println(pow10(3))
100
1000