On Sat May 11 11:18:58 2013, pmichaud wrote:
> Now fixed in b1695cf:
>
> pmichaud@kiwi:~/p6/rakudo$ cat x.p6
> use MONKEY_TYPING;
> augment class List {
> proto method combinations(|) { * }
> }
>
> pmichaud@kiwi:~/p6/rakudo$ ./perl6 x.p6
> pmichaud@kiwi:~/p6/rakudo$
>
> Ticket closable with
Now fixed in b1695cf:
pmichaud@kiwi:~/p6/rakudo$ cat x.p6
use MONKEY_TYPING;
augment class List {
proto method combinations(|) { * }
}
pmichaud@kiwi:~/p6/rakudo$ ./perl6 x.p6
pmichaud@kiwi:~/p6/rakudo$
Ticket closable with tests (hint: test that List.sink doesn't fail).
Pm
On Wed May 08 18:16:40 2013, grond...@yahoo.fr wrote:
> This is perl6 version 2013.04-55-gfe70494 built on parrot 5.2.0
> revision RELEASE_5_2_0
>
>
> use MONKEY_TYPING;
> augment class List { proto method combinations(|) {*} }
>
>
> Cannot look up attributes in a type object
It works for me i
On Fri, May 10, 2013 at 10:51:14PM -0700, Will Coleda via RT wrote:
> On Wed Sep 01 10:17:15 2010, masak wrote:
> > rakudo: say :10(':16')
> > rakudo dc9900: OUTPUT�DON'T PANIC! Invalid character (:)!
> > Please try again :)
> > ...DON'T PANIC?
> > that's lue's addition, I think.
> > should th
# New Ticket Created by David Warring
# Please include the string: [perl #117955]
# in the subject line of all future correspondence about this issue.
# https://rt.perl.org:443/rt3/Ticket/Display.html?id=117955 >
Hi There,
I'm noticing some unexpected capture results when I introduce the
conj
# New Ticket Created by grond...@yahoo.fr
# Please include the string: [perl #117923]
# in the subject line of all future correspondence about this issue.
# https://rt.perl.org:443/rt3/Ticket/Display.html?id=117923 >
This is perl6 version 2013.04-55-gfe70494 built on parrot 5.2.0
revision REL
On Wed Feb 01 06:28:26 2012, coke wrote:
> On Sun Oct 10 16:05:36 2010, masak wrote:
> > rakudo: class Car { has @.wheels }; say Car.^attributes
> > rakudo 5bdbd4: OUTPUT«@!wheels»
> > rakudo: class Car { has @.wheels }; say Car.^attributes.perl
> > rakudo 5bdbd4: OUTPUT«Method 'attributes' no
On Mon Oct 10 17:18:34 2011, coke wrote:
> On Thu Nov 26 08:10:19 2009, masak wrote:
> > rakudo: class A {}; class B {}; subset C of A & B; say C ~~
> A;
> > say C ~~ B
> > rakudo 7347ec: ( no output )
> > locally, that gives 1\n0\n
> > std: class A {}; class B {}; subset C of A & B; say C ~~