Hi, In message "Re: Specifying local and external block parameters (that old chestnut)" on 02/10/06, ts <decoux / moulon.inra.fr> writes: | |>>>>> "Y" == Yukihiro Matsumoto <matz / ruby-lang.org> writes: |Y> "1", with warning. | | Something like this ? | |pigeon% cat b.rb |#!./ruby |def a(b := 'ff') | b, i := 12, 24 | [1, 2].each do |i| | b = i; b *= 2; p b | b := i; b *= 4; p b | end | p b, i |end Yes, exactly (although I was not going to allow ":=" in parameter list). Do you mean you have implemented? Incredible. matz.