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