RosettaCodeData/Task/Sort-numbers-lexicographically/Quackery/sort-numbers-lexicographically.quackery
2023-07-01 13:44:08 -04:00

9 lines
160 B
Text

[ [] swap times
[ i^ 1+ number$
nested join ]
sort$
[] swap
witheach
[ $->n drop join ] ] is task ( n --> [ )
13 task echo