Files
Digpkg/math/docs/pow.md

14 lines
222 B
Markdown
Raw Normal View History

2026-01-23 16:47:56 +11:00
# math_Pow
Gets the
## Arguments
- number (double): The number to get the square root of
## Returns
result (double): The square root of the number
## Example
```python
call !math_Sqrt 16 &result
println $result # 4
```