# New Ticket Created by  "Carl Mäsak" 
# Please include the string:  [perl #64458]
# in the subject line of all future correspondence about this issue. 
# <URL: http://rt.perl.org/rt3/Ticket/Display.html?id=64458 >


Rakudo 0bb68ee seems to be regressed on reversing ranges:

$ perl6 -e '.say for (1..8).reverse; say "!"; say (1..8).reverse.perl'
!
8..1

I expect the output to be something like this:

8
7
6
5
4
3
2
1
!
[8, 7, 6, 5, 4, 3, 2, 1]

Reply via email to