max function

num max(
  1. num a,
  2. num b
)

Returns the greater of two values.

Implementation

num max(num a, num b) => math.max(a, b);