2021-01-15 11:59:35 -08:00

19 lines
317 B
Plaintext

---
page_title: pow - Functions - Configuration Language
sidebar_title: pow
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
> pow(3, 2)
9
> pow(4, 0)
1
```