PickBASIC / FlashBASIC
^ arithmetic operator
.mdThe ^ symbol arithmetic operator is an alternate means of indicating an exponentiation operation on a specific numeric expression.
Synonyms**
Example(s)
This example calculates the value
of a as the cube of the value of x.
a = x ^ 3
This example is identical in output to the previous example.
a = pwr(x,3)