3 lines
80 B
Scala
3 lines
80 B
Scala
|
|
println(List(5,2,78,2,578,-42).sortWith(_<_))
|
||
|
|
//--> List(-42, 2, 2, 5, 78, 578)
|