Bug in lambda?

In 1.9 it won't be able to access local scope?

No, just not the arguments. The following will still work:

a = 1
foo = lambda { a = 99 }
foo.call
p a # prints 99

···

On 9/9/07, Bernardo Monteiro Rufino <bermonruf@gmail.com> wrote:

--
Bernardo Rufino