On Wed Jul 07 15:35:30 2010, masak wrote:
> <tylercurtis> rakudo: my @foo; push(@foo, 1, 2, 3); @foo.perl.say
> <p6eval> rakudo 894e79: OUTPUT«[1, 2, 3]»
> <tylercurtis> rakudo: my @foo; @foo ,= 1, 2, 3; @foo.perl.say
> <p6eval> rakudo 894e79: OUTPUT«[1]»
> <tylercurtis> S03: "@foo ,= 1,2,3 # same as push(@foo,1,2,3)"
> <masak> well spotted.
> * masak submits rakudobug
> <masak> tylercurtis++
This now fails with:
20:44 < [Coke]> rakudo: my @foo; @foo ,= 1, 2, 3; @foo.perl.say
20:44 <+p6eval> rakudo 63326f: OUTPUT«splice() not implemented in class 'Mu'
in method reify at src/gen/CORE.setting:3952 in method gimme
at src/gen/CORE.setting:4313 in method eager at
src/gen/CORE.setting:4288 in method STORE at
src/gen/CORE.setting:4707 in block <anon> at
/tmp/NXMhYHJgd8:1…
--
Will "Coke" Coleda