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


ANY max(ANY arg, ...)

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

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


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


the Cold Dark