#

Min of two numbers

function min(x,y) { return x < y ? x : y }