Hi,

In message "[ruby-talk:4691] Re: Class methods"
    on 00/08/31, ts <decoux / moulon.inra.fr> writes:

| It give the same error with :
|
|def a
|   lambda { return }.call
|end
|
| vs
|
|def a
|   b = lambda { return }
|   b.call
|end
|
| this is why I know the difference

These should give same results.  I'll fix.

							matz.