# File default/mathematician.rb, line 46
    def advance_to_next_diagonal()
        if facing_west?() 
            face_north()
        else 
            face_east()
        end
        move()
        turn_around()
    end