Sorting algorithms/Bogosort: Difference between revisions

Content added Content deleted
(added ruby)
Line 313:
=={{header|Modula-3}}==
<pre>
MODULE Bogo EXPORTS Main;
 
IMPORT IO, Random;
Line 356:
END;
IO.PutChar('\n');
END MainBogo.
</pre>