class IRB::OutputMethod

def puts(*objs)

character.
Calls #print on each element in the given +objs+, followed by a newline
def puts(*objs)
  for obj in objs
    print(*obj)
    print "\n"
  end
end