English | 简体中文 | 繁體中文 | Русский язык | Français | Español | Português | Deutsch | 日本語 | 한국어 | Italiano | بالعربية
Return the element with the minimum value in the list.
min(lst1)
Lst1 −Element List
Return the element with the minimum value in the list.
-module(helloworld). -import(lists,[min/1]). -export([start/0]). start() -> Lst1 = [1,2,3,4], io:fwrite("~w~n",[min(Lst1).
When we run the above program, we will get the following results.
1