Stair-climbing puzzle

func step_up() {
    while (!step()) {
        step_up()
    }
}

Last updated