4 lines
87 B
Text
4 lines
87 B
Text
|
|
list = [2, 4, 3, 1, 2]
|
||
|
|
IO.inspect Enum.sort(list)
|
||
|
|
IO.inspect Enum.sort(list, &(&1>&2))
|