[perl #60820] Infinite pretzel recursion in Rakudo when filling a variable with an array in which one of the elements is the old value of that variable

2008-12-15 Thread Patrick R. Michaud via RT
On Tue Nov 25 18:21:04 2008, pmichaud wrote: > On Tue, Nov 25, 2008 at 12:36:45PM -0800, Carl Mäsak wrote: > > rakudo: my $a = 5; $a = [ $a, 6 ]; say $a > > rakudo 33193: OUTPUT[maximum recursion depth > > Rakudo doesn't quite know how to interpolate values into lists yet, > or how to convert a

Re: [perl #60820] Infinite pretzel recursion in Rakudo when filling a variable with an array in which one of the elements is the old value of that variable

2008-11-25 Thread Patrick R. Michaud
On Tue, Nov 25, 2008 at 12:36:45PM -0800, Carl Mäsak wrote: > rakudo: my $a = 5; $a = [ $a, 6 ]; say $a > rakudo 33193: OUTPUT[maximum recursion depth exceeded␤current > instr.: 'parrot;List;get_string' pc 2808 (src/gen_builtins.pir:1885)␤] > jnthn: I think you should see this. > masak: File ra

[perl #60820] Infinite pretzel recursion in Rakudo when filling a variable with an array in which one of the elements is the old value of that variable

2008-11-25 Thread Carl Mäsak
# New Ticket Created by "Carl Mäsak" # Please include the string: [perl #60820] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=60820 > rakudo: my $a = 5; $a = [ $a, 6 ]; say $a rakudo 33193: OUTPUT[maximum recursion depth