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

6 lines
96 B
Text
Raw Permalink Normal View History

2024-03-06 22:25:12 -08:00
import "./sort" for Sort
2023-07-01 11:58:00 -04:00
var a = [7, 10, 2, 4, 6, 1, 8, 3, 9, 5]
Sort.quick(a)
System.print(a)