package wip

This commit is contained in:
2026-01-23 16:47:56 +11:00
parent f6bfa6b8fd
commit 904ef85f54
18 changed files with 259 additions and 6 deletions

14
math/docs/pow.md Normal file
View File

@@ -0,0 +1,14 @@
# 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
```