RosettaCodeData/Task/Sort-an-array-of-composite-structures/Tcl/sort-an-array-of-composite-structures.tcl
Ingy döt Net 68f8f3e56b all tasks
2013-04-11 01:07:29 -07:00

3 lines
105 B
Tcl

set people {{joe 120} {foo 31} {bar 51}}
# sort by the first element of each pair
lsort -index 0 $people