minimum method

bool minimum(
  1. num input,
  2. num min
)

Implementation

bool minimum(num input, num min) {
  return input >= min;
}