8 lines
169 B
Text
8 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();
|
|
}
|
|
}
|
|
}
|