Towers of Hanoi: Difference between revisions

Content deleted Content added
Line 76:
=={{header|AutoHotkey}}==
<lang AutoHotkey>
move(n, from, to, via) ;'n' is the number of disks, 'from' is starting pole, 'to' is destination pole, 'via' is remaining pole
move(n, from, to, via)
{
if (n = 1)