# File default/adder.rb, line 88
    def on_second_avenue?()
        turn_left()
        move()
        if front_is_clear?() 
            turn_around()
            move()
            turn_left()
            return false
        end
        turn_around()
        move()
        turn_left()
        return true
    end