# New Ticket Created by Ira Byerly
# Please include the string: [perl #116933]
# in the subject line of all future correspondence about this issue.
# https://rt.perl.org:443/rt3/Ticket/Display.html?id=116933 >
Script started on Mon 25 Feb 2013 08:40:18 PM HST
$
$
$
$ perl6 -v
This is perl6
On Thu, Feb 21, 2013 at 09:07:44AM -0800, Ricardo SIGNES wrote:
> This program never terminates:
>
> use v6;
>
> my @a = << >>;
> while (my @c = splice @a, 0, 3) {
> say "one more";
> }
After each splice, @c ends up being @(Any, Any, Any). I'm not
sure if this is correct; I can see
On Thu, Feb 21, 2013 at 09:07:44AM -0800, Ricardo SIGNES wrote:
> This program never terminates:
>
> use v6;
>
> my @a = << >>;
> while (my @c = splice @a, 0, 3) {
> say "one more";
> }
After each splice, @c ends up being @(Any, Any, Any). I'm not
sure if this is correct; I can see
# New Ticket Created by Ricardo SIGNES
# Please include the string: [perl #116897]
# in the subject line of all future correspondence about this issue.
# https://rt.perl.org:443/rt3/Ticket/Display.html?id=116897 >
This program never terminates:
use v6;
my @a = << >>;
while (my @c =