class Byebug::RemoteInterface

def send_command(msg)

def send_command(msg)
  @socket.puts msg
  result = @socket.gets
  raise IOError unless result
  result.chomp
end