Sort an integer array: Difference between revisions

Content added Content deleted
No edit summary
Line 1,539: Line 1,539:
=={{header|Phix}}==
=={{header|Phix}}==
<lang Phix>?sort({9, 10, 3, 1, 4, 5, 8, 7, 6, 2})</lang>
<lang Phix>?sort({9, 10, 3, 1, 4, 5, 8, 7, 6, 2})</lang>

=={{header|Phixmonti}}==
<lang Phixmonti>include ..\Utilitys.pmt

( 9 10 3 1 4 5 8 7 6 2 ) sort print</lang>


=={{header|PHP}}==
=={{header|PHP}}==