Minimum value

min expr1 expr2
(min expr1)
(min expr1 expr2 expr3 ...)

Returns the minimum value of exprNN. If any exprNN is a collection then minimum value in this collection is compared to values of other exprMM in arguments.

Example:

"a := {3 {2 1}}
print min -1 :a
print (min :a)

Output:

-1
1

See also:

Table of Content