As of June 3rd, the pow() command has been superseded by the exponentiation operator (**). You can still use pow() but it will trigger a warning every time, as this command will be removed in the future.   The exponentiation operator has higher precedence than any other operator. This means (a * b ** c) is equivalent to (a * (b ** c)) and not ((a * b) ** c)       Here's how to migrate your scripts:   pow(a, b) ➜ (a ** b)     In combinat