18 lines
298 B
Plaintext
Raw Permalink Normal View History

2020-03-18 18:46:47 -04:00
---
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
```shell-session
2020-03-18 18:46:47 -04:00
> pow(3, 2)
9
> pow(4, 0)
1
```