Sort an integer array: Difference between revisions

Content added Content deleted
(add task to aarch64 assembly raspberry pi)
No edit summary
Line 542: Line 542:
</lang>
</lang>
=={{header|Arturo}}==
=={{header|Arturo}}==
<lang rebol>arr: [2 3 5 8 4 1 6 9 7]

sort 'arr ; in-place
<lang arturo>arr: #(2 3 5 8 4 1 6 9 7)
sort! arr // in-place

loop arr => print</lang>
loop arr => print</lang>