Sorting algorithms/Bogosort: Difference between revisions

Added Arturo implementation
m (→‎{{header|Phix}}: added syntax colouring the hard way)
(Added Arturo implementation)
Line 620:
 
</lang>
 
=={{header|Arturo}}==
 
<lang rebol>bogoSort: function [items][
a: new items
while [not? sorted? a]-> shuffle 'a
return a
]
 
print bogoSort [3 1 2 8 5 7 9 4 6]</lang>
 
{{out}}
 
<pre>1 2 3 4 5 6 7 8 9</pre>
 
=={{header|AutoHotkey}}==
1,532

edits