Sorting algorithms/Bogosort: Difference between revisions

Content deleted Content added
No edit summary
Line 353:
 
=={{header|Modula-3}}==
 
<pre>
<code modula3>MODULE Bogo EXPORTS Main;
 
IMPORT IO, Random;
Line 397:
END;
IO.PutChar('\n');
END Bogo.</code>
</pre>
 
=={{header|Oberon-2}}==