class IRB::OutputMethod

def printn(*opts)

Prints the given +opts+, with a newline delimiter.
def printn(*opts)
  print opts.join(" "), "\n"
end