# New Ticket Created by "Carl Mäsak" # Please include the string: [perl #75698] # in the subject line of all future correspondence about this issue. # <URL: http://rt.perl.org/rt3/Ticket/Display.html?id=75698 >
<masak> rakudo: say (-5 ... ^5).perl <p6eval> rakudo ae1300: OUTPUT«(-5, -4, -3, -2, -1, 0, 0, 1, 2, 3, 4)» <diakopter> std is rebuilding, I think * masak submits rakudobug <masak> rakudo: say (-5 ... 5).perl <p6eval> rakudo ae1300: OUTPUT«(-5, -4, -3, -2, -1, 0, 1, 2, 3, 4, 5)» <masak> aha! So it's the prefix:<^> that does it. The infix:<...> operator probably steps up from -5 to 0, and then includes 0 again as the first value of C<^5>.