* website: remove obselete sidebar_title frontmatter from docs * website: bump to latest docs-page * website: update plugin creation and registration docs * website: fix broken links
18 lines
298 B
Plaintext
18 lines
298 B
Plaintext
---
|
|
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
|
|
> pow(3, 2)
|
|
9
|
|
> pow(4, 0)
|
|
1
|
|
```
|