class Byebug::Interface

def read_input(prompt, save_hist = true)


Reads a new line from the interface's input stream.
def read_input(prompt, save_hist = true)
  line = readline(prompt)
  return unless line
  history.push(line) if save_hist
  split_commands(line)
end