RosettaCodeData/Task/Sort-an-integer-array/Elena/sort-an-integer-array.elena

10 lines
168 B
Text
Raw Normal View History

2017-09-23 10:01:46 +02:00
import system'routines.
import extensions.
2016-12-05 22:15:40 +01:00
2017-09-23 10:01:46 +02:00
program =
2016-12-05 22:15:40 +01:00
[
2017-09-23 10:01:46 +02:00
var unsorted := (6, 2, 7, 8, 3, 1, 10, 5, 4, 9).
2016-12-05 22:15:40 +01:00
2017-09-23 10:01:46 +02:00
console printLine(unsorted clone; sort:ifOrdered).
2016-12-05 22:15:40 +01:00
].