/
ColdC/Functions/
ColdC/Structure/
<head><title>ColdC: Function/Method Reference: max()</title></head>

<body>

<h1 align=center><a href="/ColdC/">ColdC</a>: <a href="/ColdC/Functions/">Function/Method Reference</a>: max()</h1>

<hr>

<p><font size=+1><i>ANY</i> <b>max</b>(<i>ANY <b>arg</b>, ...</i>)</font>

<p>This function returns the maximum of its arguments.  All of the
arguments must be of the same type, and must be integers or strings.
<blockquote>
<PRE>
max(3, 7, 9, 5)
=&gt; 9
max("Foo", "aardvark", "bar", "Quux")
=&gt; "Quux"
</PRE>
</blockquote>

<p><hr size=4><p align=center><i>Last Modified on 24 Mar 1996</i>
<br><i>Copyright &copy; 1995, 1996, Brandon Gillespie</i>
</body>