RosettaCodeData/Task/Sort-an-integer-array/Wren/sort-an-integer-array.wren

6 lines
95 B
Plaintext

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