# File lib/interact/interactive.rb, line 83
    def goto(pos)
      return if pos == position

      if pos > position
        display(answer[position .. pos])
      else
        print("\b" * (position - pos) * char_size)
      end

      @position = pos
    end