RosettaCodeData/Task/Sort-an-array-of-composite-structures/PicoLisp/sort-an-array-of-composite-structures-2.l
2023-07-01 13:44:08 -04:00

2 lines
96 B
Text

: (by car sort '(("def" 456) ("abc" 789) ("ghi" 123)))
-> (("abc" 789) ("def" 456) ("ghi" 123))