5 lines
95 B
Text
5 lines
95 B
Text
import "/sort" for Sort
|
|
|
|
var a = [7, 10, 2, 4, 6, 1, 8, 3, 9, 5]
|
|
Sort.quick(a)
|
|
System.print(a)
|