Table of Contents

max

num max(num a, num b)

Description

Returns the greater of two numbers.

Examples

max(3, 5) -> 5
max(5, 3) -> 5
max(8.0, 7.5) -> 8.0