15 lines
296 B
Markdown
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
|
||
|
|
```
|