class IRB::OutputMethod
def ppx(prefix, *objs)
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
def ppx(prefix, *objs) puts(*objs.collect{|obj| prefix+obj.inspect}) end