Min

From Kolmafia
Revision as of 05:05, 22 May 2010 by imported>Bale
Jump to navigation Jump to search
needs(code_samples);

Function Syntax

int min(int a ,int b )

float min(float a ,float b )

  • a is the first number to compare
  • b is the second number to compare

Compares two numbers, and returns the lower of the two. Note that it is possible to mix an int and float type in the parameters, in which case the int parameter will be transparently converted to a float, and the value returned will be of float type.

See Also

max()