RosettaCodeData/Task/Sort-numbers-lexicographically/Pluto/sort-numbers-lexicographically.pluto

3 lines
76 B
Text
Raw Permalink Normal View History

2026-04-30 12:34:36 -04:00
local a = range(1, 13):map(|i| -> tostring(i)):sort():concat(", ")
print(a)