minimum(items)lowest Type: For any types t where Comparable t([t]) -> t

Gets the lowest item in the list.

Lowest is determined in the same way as operator < -- see the documentation for more details.

ExamplesClick an example to insert it
minimum([54, 7, 82])7
minimum(["cat", "aardvark", "bear"])"aardvark"
minimum([])error
See Alsomaximum(..)operator <