mirror of
https://github.com/opentffoundation/opentf.git
synced 2025-12-25 01:00:16 -05:00
migrate docs to mdx
This commit is contained in:
17
website/docs/language/functions/pow.mdx
Normal file
17
website/docs/language/functions/pow.mdx
Normal file
@@ -0,0 +1,17 @@
|
||||
---
|
||||
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
|
||||
```
|
||||
Reference in New Issue
Block a user