<head><title>ColdC: Function/Method Reference: min()</title></head>
<body>
<h1 align=center><a href="/ColdC/">ColdC</a>: <a href="/ColdC/Functions/">Function/Method Reference</a>: min()</h1>
<hr>
<p>
<font size=+1><i>ANY</i> <b>min</b>(<i>ANY <b>arg</b>, ...</i>)</font>
<p>This function returns the minimum of its arguments. All of the
arguments must be of the same type, and must be integers or strings.
<blockquote>
<PRE>
min(3, 7, 9, 5)
=> 3
min("Foo", "aardvark", "bar", "Quux")
=> "aardvark"
</PRE>
</blockquote>
<p><hr size=4><p align=center><i>Last Modified on 24 Mar 1996</i>
<br><i>Copyright © 1995, 1996, Brandon Gillespie</i>
</body>