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