# File default/mathematician.rb, line 92
    def find_beeper()
        go_to_origin()
        face_west()
        while not next_to_a_beeper?() 
            if facing_west?() 
                zig_move()
            else 
                zag_move()
            end
        end
    end