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

      print(" " * (x * char_size))

      @position += x

      back(x)
    end