From: matz@... (Yukihiro Matsumoto) Date: 2003-02-03T00:12:01+09:00 Subject: Re: Local variables & blocks Hi, In message "Re: Local variables & blocks" on 03/02/03, ts writes: |B> Thread.new do |B> i = 0 |B> .. is 'i' local to this thread, or is it shared between them? |B> end | | Actually local to the thread, with the proposition shared. In the current behavior. 'i' will not be block local, so that it will be shared in my proposal. matz.