# 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
Branch: refs/heads/master
Home: https://github.com/perl6/specs
Commit: d6eae27a80228129f060ab33ba515448063b4d1c
https://github.com/perl6/specs/commit/d6eae27a80228129f060ab33ba515448063b4d1c
Author: Solomon Foster
Date: 2013-02-25 (Mon, 25 Feb 2013)
Changed paths:
M S32
OK Moritz...
Thanks for the feedback.
On Sun, Feb 24, 2013 at 2:24 AM, Moritz Lenz wrote:
> Hi Frank,
>
> On 02/24/2013 07:27 AM, Frank White wrote:
> > Hi, I am new to Perl6 and I'm interested in the feature that allows you
> to
> > add roles to classes. From what I understand you can add a
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