max: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
No edit summary |
(No difference)
|
Latest revision as of 23:59, 14 March 2023
max() Function
Returns the largest number of all the numbers that have been passed in.
Usage
[h: largest = max(num, num, ...)]
Examples
[r: max(2, 30, 4, 7)]
[r: max(-2, -40, -100)]
Returns
30-2