https://pharo.fogbugz.com/f/cases/12419/block-arguments-should-be-read-only
On 12 Dec 2013, at 15:44, Benjamin <benjamin.vanryseghem.pharo@gmail.com> wrote:
> I just discovered that in Pharo 3 you can do:
>
> [ :bool |
> � � � self logCr: bool.
> � � � bool := false.
> � � � self logCr: bool.
> � � � ] value: true
>
> Is this a bug or a feature ?