Towers of Hanoi: Difference between revisions

Spelling correction in mathematica example
m (→‎{{header|Dc}}: fix <lang> tag)
(Spelling correction in mathematica example)
Line 592:
Hanoi[n_Integer, from_, to_, via_] :=
(Hanoi[n-1, from, via, to];
Print["Move distdisk from pole ", from, " to ", to, "."];
Hanoi[n-1, via, from, to])</lang>
 
Anonymous user