10 lines
199 B
Text
10 lines
199 B
Text
|
|
import system'routines;
|
||
|
|
import extensions;
|
||
|
|
|
||
|
|
public program()
|
||
|
|
{
|
||
|
|
var unsorted := new int[]{6, 2, 7, 8, 3, 1, 10, 5, 4, 9};
|
||
|
|
|
||
|
|
console.printLine(unsorted.clone().sort(ifOrdered).asEnumerable())
|
||
|
|
}
|