Sorting algorithms/Bogosort: Difference between revisions

Content added Content deleted
(added ruby)
Line 313: Line 313:
=={{header|Modula-3}}==
=={{header|Modula-3}}==
<pre>
<pre>
MODULE Main;
MODULE Bogo EXPORTS Main;


IMPORT IO, Random;
IMPORT IO, Random;
Line 356: Line 356:
END;
END;
IO.PutChar('\n');
IO.PutChar('\n');
END Main.
END Bogo.
</pre>
</pre>