English | 简体中文 | 繁體中文 | Русский язык | Français | Español | Português | Deutsch | 日本語 | 한국어 | Italiano | بالعربية

Erlang List Min Method

Erlang List

Return the element with the minimum value in the list.

Syntax

min(lst1)

Parameter

  • Lst1 −Element List

Return Value

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

Erlang List