From: Joel VanderWerf Date: 2002-06-11T14:35:50+09:00 Subject: Re: ruby-dev summary 17252-17356 Minero Aoki wrote: > * There's two strategies to declare that variables are block local. > (1) using block parameter declarations. e.g. > > lambda { # x, y is block local > .... > } Is there any reason this syntax wouldn't work? lambda {|a,b,c; x,y| ... It seems more conservative.