Stair-climbing puzzle: Difference between revisions

→‎{{header|AutoHotkey}}: small obvious correction, plus whitespace fix
(→‎{{header|AutoHotkey}}: small obvious correction, plus whitespace fix)
Line 109:
=={{header|AutoHotkey}}==
Recursive solution:
<lang AutoHotkey>step_up()
step_up()
{
While !step()
stepupstep_up()
}</lang>
}
</lang>
 
=={{header|C}}==
Anonymous user