On Fri Jul 22 17:15:04 2016, cookbook_...@yahoo.co.jp wrote: > See the following results. > > $ perl6 -e 'say (1 R, 2 R, 3 R, 4)' > (2 1) > $ perl6 -e 'say (1, 2, 3, 4)' > (1 2 3 4) > > I think that the resulting list of the 1st example should be (4 3 2 1) . > > > My Perl 6 version is > $ perl6 --version > This is Rakudo version 2016.07.1-9-g649ff44 built on MoarVM version 2016.07 > implementing Perl 6.c.
Fixed, and test in S03-metaops/reverse.t.