Итак, я учился работать с массивами в Groovy. Мне интересно, как сортировать массив строк по алфавиту. Мой код в настоящее время принимает строковый ввод от пользователя и печатает их в порядке и в обратном порядке:
System.in.withReader {
def country = []
print 'Enter your ten favorite countries:'
for (i in 0..9)
country << it.readLine()
print 'Your ten favorite countries in order/n'
println country //prints the array out in the order in which it was entered
print 'Your ten favorite countries in reverse'
country.reverseEach { println it } //reverses the order of the array
Как я могу распечатать их в алфавитном порядке?