From: Caleb Clausen Date: 2009-05-30T02:22:58+09:00 Subject: Re: Endless Ruby 0.0.2 On 5/29/09, Roger Pack 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)