blob: f542d26b62d9294857d90acedf62bd2c7ef4fb32 [file] [log] [blame]
---
page_title: pow - Functions - Configuration Language
description: The pow function raises a number to a power.
---
# `pow` Function
`pow` calculates an exponent, by raising its first argument to the power of the second argument.
## Examples
```
> pow(3, 2)
9
> pow(4, 0)
1
```