Returns the smaller of two numbers.
1 2
printf("%g\n", math.min(5, 10)) // 5 printf("%g\n", math.min(-5, -2)) // -5