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

15
math/docs/max.md Normal file
View File

@@ -0,0 +1,15 @@
# math_Max
Choose the largest number out of the two arguments.
## Arguments
- number1 (double): First number
- number2 (double): Second number
## Returns
result (double): The largest number out of the two provided
## Example
```python
call !math_Max 1.2 0.7 &result
println $result # 1.2
```