From: Perry Smith Date: 2007-10-22T00:15:02+09:00 Subject: "with" statement Pascal has a with statement. (I'm showing my age). It would be nice instead of: <%= h relationship.parent_id %> <%= h relationship.link_type.pcln %> <%= h relationship.child_id %> <%= h relationship.active %> <%= h relationship.notes %> <%= h relationship.created_at %> <%= h relationship.updated_at %> I could do: with(relationship) { <%= h parent_id %> <%= h link_type.pcln %> <%= h child_id %> <%= h active %> <%= h notes %> <%= h created_at %> <%= h updated_at %> } I bet there is a clever way to do this -- I just don't know now. -- Posted via http://www.ruby-forum.com/.