= private = protected
pp(*objs)
prints arguments in pretty form.
pp returns argument(s).
# File lib/pp.rb, line 58 def pp(*objs) # :doc: objs.each {|obj| PP.pp(obj) } objs.size <= 1 ? objs.first : objs end