= private = protected
pp(*objs)
Prints the given objs calling Object#inspect on each.
See #puts for more detail.
# File lib/irb/output-method.rb, line 70 def pp(*objs) puts(*objs.collect{|obj| obj.inspect}) end