Files
Digpkg/math/docs/max.md
2026-01-23 16:47:56 +11:00

15 lines
294 B
Markdown

# 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
```