# New Ticket Created by Tobias Leich
# Please include the string: [perl #123303]
# in the subject line of all future correspondence about this issue.
# https://rt.perl.org/Ticket/Display.html?id=123303 >
JimmyZ m: say 1, 2, 5 ... 10
camelia rakudo-moar e1aa07: OUTPUT«===SORRY!===Cannot assig
# New Ticket Created by Will Coleda
# Please include the string: [perl #123305]
# in the subject line of all future correspondence about this issue.
# https://rt.perl.org/Ticket/Display.html?id=123305 >
This warning is displayed many times during the rakudo JVM build when using
$ javac -vers
On Sun May 26 07:19:54 2013, pmichaud wrote:
> I'm wondering if this ticket can be marked "resolved" -- see
> https://github.com/parrot/parrot/issues/365 .
>
> The gist of #365 seems to be that parrot.h is no longer considered an
> internal Parrot header file... but I'm not sure I'm reading it
The issue https://github.com/perl6/specs/issues/47 has been closed by the end
of last year. Now there is a method "narrow" which can be used in this case
(I'll add a test for this):
$ perl6 -e 'say ~( 64, {($_/2).narrow} ...^ Rat)'
64 32 16 8 4 2 1
The sequence operator doesn't auto-coerce Rats
For Moar the limit now seems to be at 2**63 - 2**9 (on a 64-bit system):
$ perl6-m -e '$9223372036854775295'
$ perl6-m -e '$9223372036854775296'
Unhandled exception: Calculated index (-9223372036854775808) is negative, but
Any allows only 0-based indexing
[...]
For Parrot the limit seems to be