class IRB::OutputMethod

def ppx(prefix, *objs)

See #puts for more detail.

given +prefix+.
Prints the given +objs+ calling Object#inspect on each and appending the
def ppx(prefix, *objs)
  puts(*objs.collect{|obj| prefix+obj.inspect})
end