# File lib/interact/interactive.rb, line 65
    def back(x)
      return if x == 0

      print("\b" * (x * char_size))

      @position -= x
    end