= private = protected
puts(*objs)
Calls #print on each element in the given objs, followed by a newline character.
# File lib/irb/output-method.rb, line 60 def puts(*objs) for obj in objs print(*obj) print "\n" end end