On 5/29/09, Roger Pack <rogerpack2005 / gmail.com> wrote: > wonder if do-less ruby would possible, too > for i in 1..10 > p i > pp i You can leave off the do in for, until, and while loops already. I usually do. > or braceless or something > > 3.times |n| > puts n (shudder). You realize that that one already parses like: 3.times.|(n).|(puts n)