Method: Kernel#p

Defined in:
lib/nano/kernel/p.rb

#p(x) ⇒ Object

alias_method :pr, :p REdefines standrard #p kernel method to pass through its argument.



5
6
7
8
# File 'lib/nano/kernel/p.rb', line 5

def p( x )
  puts x.inpsect
  x
end