scala reverse list

To reverse a list in Scala, you can use the reverse method. Here's an example:

val myList = List(1, 2, 3, 4, 5)
val reversedList = myList.reverse

In this example, the reverse method is called on the myList list, and the result is stored in the reversedList variable. The reversedList will contain the elements of myList in reverse order.

Please note that the reverse method returns a new list with the elements reversed, and it does not modify the original list.