module Kernel

def byebug

def byebug
  require_relative "core"
  Byebug.attach unless Byebug.mode == :off
end

def remote_byebug(host = "localhost", port = nil)

def remote_byebug(host = "localhost", port = nil)
  Byebug.spawn(host, port)
  Byebug.attach
end