yeyicheng

Untitled

Apr 14th, 2012
32
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Ruby 0.18 KB | None | 0 0
  1. puts dog.inspect
  2. #<Animal:0x2db9628 @name="dog", @food="dogFood">
  3. Ruby also has a built-in method called to_s which renders an object as a string:
  4. puts dog.to_s
  5. #<Animal:0x2c596f8>
Advertisement
Add Comment
Please, Sign In to add comment