matz / zetabits.com (Yukihiro Matsumoto) writes: > My current idea is to introduce new block parameter syntax <>, which > makes all variables inside block local. In addition, optional block > local variable declaration might be added, like: > > l = lambda{<a, b; c, d> ...} All variables, or just those mentioned after the semicolon? If it's all variables, then you could probably not need the ';c, d' part. Regards Dave