private Method

Kernel.pp(*objs)

prints arguments in pretty form.

pp returns nil.

Source Code

# File pp.rb, line 58
def pp(*objs) # :doc:
  objs.each {|obj|
    PP.pp(obj)
  }
  nil
end
Comments

Have your say
Please use Textile formatting (click here for a cheat sheet). Use <code/> and <pre/> for code samples.
Click here to login with OpenID to to post comments.