# New Ticket Created by "Carl Mäsak" # Please include the string: [perl #113870] # in the subject line of all future correspondence about this issue. # <URL: https://rt.perl.org:443/rt3/Ticket/Display.html?id=113870 >
<TimToady> r: constant @t = [\+] 1..5; say (0,@t Z^.. @t).perl; <p6eval> rakudo 88a9d6: OUTPUT«(1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15).list» <TimToady> that one still doesn't produce sub-parcels <TimToady> pmichaud: ^^ <jnthn> r: my @t = [\+] 1..5; say (0,@t Z^.. @t).perl; <p6eval> rakudo 88a9d6: OUTPUT«(1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15).list» <jnthn> OK, and constant ain't to blame this time :) * masak submits rakudobug <pmichaud> TimToady: okay, looking. <TimToady> probably Range behaving insufficiently like a Parcel somewhere <pmichaud> r: my @t = [\+] 1..5; say (0,@t Z.. @t).perl <p6eval> rakudo 88a9d6: OUTPUT«(0, 1, 1, 2, 3, 3, 4, 5, 6, 6, 7, 8, 9, 10, 10, 11, 12, 13, 14, 15).list» <pmichaud> okay, I can look at it.