===== Min ======
==== min( a, b ) ====
Return the smaller value of a or b.
=== Description ===
min( a, b )
This function returns the smaller of the two values, a or b.
=== Parameters ===
| ''a'' | Any value |
| ''b'' | Any value |
=== Return value ===
If a>=b, returns the value b
If amax(3, -4)
Returns -4.