Cold Help System: Programming: ColdC Reference Manual: Functions: Numeric: min()


ANY min(ANY arg, ...)

This function returns the minimum of its arguments. All of the arguments must be of the same type, and must be integers, floats, or strings.

min(3, 7, 9, 5)
=> 3
min("Foo", "aardvark", "bar", "Quux")
=> "aardvark"


abs() | Math | max() | min() | random()


the Cold Dark