Towers of Hanoi: Difference between revisions

Content added Content deleted
m (wp link)
m (Another test...)
Line 419: Line 419:


=={{header|Modula-3}}==
=={{header|Modula-3}}==
<source lang="modula3">
<pre>
MODULE Hanoi EXPORTS Main;
MODULE Hanoi EXPORTS Main;


Line 437: Line 437:
doHanoi(4, 1, 2, 3);
doHanoi(4, 1, 2, 3);
END Hanoi.
END Hanoi.
</pre>
</source>


=={{header|OCaml}}==
=={{header|OCaml}}==