Following a simple example at http://www.simplyscala.com/ , I get:
scala> val lst=List(1,7,2,8,5,6,3,9,14,12,4,10) lst: List[Int] = List(1, 7, 2, 8, 5, 6, 3, 9, 14, 12, 4, 10) scala> lst.sort(_>_) <console>:9: error: value sort is not a member of List[Int] lst.sort(_>_)
What's wrong? Thanks!
Anton Ashanin
source share