Sorting algorithms/Bogosort: Difference between revisions

Content added Content deleted
No edit summary
Line 353: Line 353:


=={{header|Modula-3}}==
=={{header|Modula-3}}==

<pre>
MODULE Bogo EXPORTS Main;
<code modula3>MODULE Bogo EXPORTS Main;


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


=={{header|Oberon-2}}==
=={{header|Oberon-2}}==