Patrick R. Michaud <[EMAIL PROTECTED]> wrote:
On Fri, Dec 08, 2006 at 05:05:00PM -0500, Matt Diephouse wrote:
> Patrick R. Michaud <[EMAIL PROTECTED]> wrote:
> >Does anyone have any suggestions about what sort of PIR
> >code and/or PMCs we need to be able to do make the following
> >Perl 6 code w
From: Will Coleda <[EMAIL PROTECTED]>
Date: Fri, 8 Dec 2006 19:58:25 -0500
. . .
I'm attempting to implement the 'Range' object (and other lazy lists)
for perl6, using a coroutine to generate the next value in the range.
At the moment, all instantiations of the range object
On Dec 8, 2006, at 6:45 PM, Bob Rogers wrote:
From: "Will Coleda" <[EMAIL PROTECTED]>
Date: Fri, 08 Dec 2006 16:00:37 -0500
Given the current :method and .yield implementations . . .
. . .
Which is unsurprising given the current implementation. Is this
desired
behavior,
From: "Will Coleda" <[EMAIL PROTECTED]>
Date: Fri, 08 Dec 2006 16:00:37 -0500
Given the current :method and .yield implementations . . .
. . .
Which is unsurprising given the current implementation. Is this desired
behavior, though?
This does not work right for nonmethods ei
On Fri, Dec 08, 2006 at 05:05:00PM -0500, Matt Diephouse wrote:
> Patrick R. Michaud <[EMAIL PROTECTED]> wrote:
> >Does anyone have any suggestions about what sort of PIR
> >code and/or PMCs we need to be able to do make the following
> >Perl 6 code work...?
>
> Sure. I think Tcl handles this pret
Am Freitag, 8. Dezember 2006 22:43 schrieb Patrick R. Michaud:
> Does anyone have any suggestions about what sort of PIR
> code and/or PMCs we need to be able to do make the following
> Perl 6 code work...?
>
> my @a;
> @a[4] = 'Hello';
>
> my $b := @a[4];
> say $b; #
Patrick R. Michaud <[EMAIL PROTECTED]> wrote:
Does anyone have any suggestions about what sort of PIR
code and/or PMCs we need to be able to do make the following
Perl 6 code work...?
Sure. I think Tcl handles this pretty nicely at the moment (although
Leo disagrees - he likes the Ref PMC route
Does anyone have any suggestions about what sort of PIR
code and/or PMCs we need to be able to do make the following
Perl 6 code work...?
my @a;
@a[4] = 'Hello';
my $b := @a[4];
say $b;# says "Hello"
@a[4] = [1, 2];
say $b;# says "1 2"
Given the current :method and .yield implementations, the following code:
$ cat foo.pir
.sub main :main
$P1 = newclass 'foo'
$P2 = new 'foo'
$S1 = $P2.'bork'()
say $S1
$P3 = new 'foo'
$S1 = $P3.'bork'()
say $S1
.end
.namespace [ 'foo']
.sub bork :method
$I0 = 0
loop:
.yield($I0)
inc $I0
go
# New Ticket Created by James Keenan
# Please include the string: [perl #41055]
# in the subject line of all future correspondence about this issue.
# http://rt.perl.org/rt3/Ticket/Display.html?id=41055 >
While running 'perl Configure.pl' last night, I got the following
warning:
Loading pl
10 matches
Mail list logo