max()
Return the larger value of these two integers.
max(1, 2) //-> 2
public fun max(x: Int, y: Int): Int { if x >= y { x } else { y } }