or download this
Exponentiation
Binary "**" is the exponentiation operator. It binds even more tightl
+y than unary minus,
so -2**4 is -(2**4), not (-2)**4. (This is implemented using C’s pow(3
+) function,
which actually works on doubles internally.)