Stair-climbing puzzle: Difference between revisions

Content added Content deleted
Line 623: Line 623:
<lang Lua>
<lang Lua>
function step_up()
function step_up()
while not step() do step_up() end
while not step() do step_up() end
end
end
</lang>
</lang>