max function

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

Return greater number

Implementation

max(num a, num b) => a >= b ? a : b;