class IRB::OutputMethod

def pp(*objs)

See #puts for more detail.

Prints the given +objs+ calling Object#inspect on each.
def pp(*objs)
  puts(*objs.collect{|obj| obj.inspect})
end