9 lines
169 B
Text
9 lines
169 B
Text
|
|
bundle Default {
|
||
|
|
class Sort {
|
||
|
|
function : Main(args : System.String[]) ~ Nil {
|
||
|
|
nums := Structure.IntVector->New([2,4,3,1,2]);
|
||
|
|
nums->Sort();
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|