From: Jeff Moore Date: 2008-07-25T07:20:50+09:00 Subject: Re: what is "p"? matu wrote: > James Gray wrote: > >> What is different is how you can define them. You can use "…" or '…' >> to construct String objects with different rules about how the content >> will be treated. > > clear as mud :) thanks! like so... irb(main):001:0> h='huh?' => "huh?" irb(main):002:0> p '#{h}' "\#{h}" => nil irb(main):003:0> p "#{h}" "huh?" => nil -- Posted via http://www.ruby-forum.com/.