Re: Basic question about lexical binding in relationship with "list assignment"

2018-12-27 Thread Elizabeth Mattijsen
I’d say it is a bug you do not get the error with “my ($foo) = 6”, as clearly the first “say $foo” inside the scope is referring to the inner $foo, not the outer $foo. So I’d suggest filing an issue for that: https://github.com/rakudo/rakudo/issues > On 27 Dec 2018, at 09:29, Raymond Dresens

Re: Basic question about lexical binding in relationship with "list assignment"

2018-12-27 Thread JJ Merelo
Hi, El jue., 27 dic. 2018 a las 9:30, Raymond Dresens (< raymond.dres...@gmail.com>) escribió: > Hello, > > I'm getting up to speed with Perl 6 again after a long while, and I more > or less 'hit my nose' against something that I can reduce to the > following very basic snippet of code: > >