Sorting algorithms/Bogosort: Difference between revisions

Content added Content deleted
m (→‎{{header|Phix}}: added syntax colouring the hard way)
(Added Arturo implementation)
Line 620: Line 620:


</lang>
</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}}==
=={{header|AutoHotkey}}==