class Byebug::Processor

Should this be a mixin?

def afmt(msg, newline="\n")

Format msg with gdb-style annotation header
def afmt(msg, newline="\n")
  "\032\032#{msg}#{newline}"
end

def aprint(msg)

def aprint(msg)
  print afmt(msg) if Byebug.annotate.to_i > 2
end