> On Tue, 2003-07-29 at 22:30, Robert Klemme wrote: > >> My solution is to use {} for one line blocks and do..end for more >> complicated things. > > I tried this style for a while. But then every time I added lines to a > one-line block, I had to change {} to do/end. > > Today I normally used {} on all blocks, except in Rake files. My take is: {} are for functional blocks; do..end for procedural blocks. That shows me which expressions are important for their results, and which are not. Gavin