From: Farrel Lifson Date: 2006-03-07T17:09:11+09:00 Subject: Re: How to print stuff in RTHML embedded code (equiv to php "echo")?? <%= @articles.join("") %> On 3/7/06, Namor wrote: > A better example would be > > if i was to do some debugging > it would have to be > > <% @articles.map { |x| %> > <%= x.name %> > <% } %> > > instead of > <%= @articles.map { |x| echo x.name } %> ??? > > wouldnt that be so difficult to type out and to read as well? > > >