Garden 🌻

max()

Return the larger value of these two integers.

Example
max(1, 2) //-> 2
Source Code
public fun max(x: Int, y: Int): Int {
  if x >= y {
    x
  } else {
    y
  }
}