Sort an array of composite structures: Difference between revisions

added Arturo
m (syntax highlighting fixup automation)
(added Arturo)
Line 1,079:
Name : Vivés number habitants : 174
</pre>
=={{header|Arturo}}==
<syntaxhighlight lang="arturo">people: [
["joe" 120]
["foo" 31]
["bar" 51]
]
 
print arrange people 'x -> x\0</syntaxhighlight>
 
{{out}}
 
<pre>[bar 51] [foo 31] [joe 120]</pre>
 
=={{header|ATS}}==
 
1,532

edits