fork download
  1. object Main extends App {
  2. // your code goes here
  3.  
  4. println("The solution for the sorting program:")
  5. val numbers = List(3, 7, 2, 1, 5)
  6.  
  7. val b = numbers.sorted
  8.  
  9. println(b)
  10.  
  11. }
Success #stdin #stdout 0.37s 382016KB
stdin
Standard input is empty
stdout
The solution for the sorting program:
List(1, 2, 3, 5, 7)