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

10 lines
200 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
import system'routines;
import extensions;
2026-02-01 16:33:20 -08:00
public Program()
2023-07-01 11:58:00 -04:00
{
2026-02-01 16:33:20 -08:00
auto unsorted := new int[]{6, 2, 7, 8, 3, 1, 10, 5, 4, 9};
2023-07-01 11:58:00 -04:00
2026-02-01 16:33:20 -08:00
Console.printLine(unsorted.clone().sort(ifOrdered).asEnumerable())
2023-07-01 11:58:00 -04:00
}