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

15 lines
296 B
Markdown

# math_Min
Choose the smallest number out of the two arguments.
## Arguments
- number1 (double): First number
- number2 (double): Second number
## Returns
result (double): The smallest number out of the two provided
## Example
```python
call !math_Min 0.5 1.5 &result
println $result # 0.5
```