exponent

Warning!

The use of gawkisms will prevent the script from running correctly on systems that use a traditional awk interpreter.

The doublestar exponent operator is not available in traditional implementations

The doublestar gawkism

print (4 ** 3)    # 64 (4 to the power of 3)

Precedence

print (2 * 4 ** 3)    # 128 the exponent has a higher precedence than multiplication

Exponent Combination Assignment Operator

value **= 3    # value = value ** 3