r30747 -[S03] s/shaped/nested/ when talking about auto-recursive hyper ops

2010-05-22 Thread pugs-commits
Author: moritz Date: 2010-05-22 09:41:07 +0200 (Sat, 22 May 2010) New Revision: 30747 Modified: docs/Perl6/Spec/S03-operators.pod Log: [S03] s/shaped/nested/ when talking about auto-recursive hyper ops Modified: docs/Perl6/Spec/S03-operators.pod

[perl #75262] [BUG] release #29 not installing

2010-05-22 Thread via RT
# New Ticket Created by Marcus Del Greco # Please include the string: [perl #75262] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=75262 > This is my first bug report so please be patient. I am on Red Hat EL 5: delgr...@c

[perl #75264] [BUG] Placeholder parameters are mixed up with ordinary lexical variables in Rakudo

2010-05-22 Thread Carl Mäsak
# New Ticket Created by "Carl Mäsak" # Please include the string: [perl #75264] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=75264 > rakudo: my $a = 1..10; for $^a { .say } rakudo 9a15b8: OUTPUT«12345678910␤» o.O * mas

Installing a packaged version of Rakudo on Windows

2010-05-22 Thread Dilbert
In my search for an easily installable Perl 6 on Windows (something similar to having a Strawberry Perl for Perl 6), I found (the obvious) http://rakudo.org/how-to-get-rakudo > How to get Rakudo Perl 6 > For a number of platforms there are packaged versions of Rakudo, > which are very easy to inst

Re: [perl #75262] [BUG] release #29 not installing

2010-05-22 Thread Moritz Lenz
Marcus Del Greco (via RT) wrote: > # New Ticket Created by Marcus Del Greco > # Please include the string: [perl #75262] > # in the subject line of all future correspondence about this issue. > # http://rt.perl.org/rt3/Ticket/Display.html?id=75262 > > > > This is my first bug report so please

[perl #75266] [BUG] Indexing an attribute array with a Num causes MMD not to match in Rakudo

2010-05-22 Thread Carl Mäsak
# New Ticket Created by "Carl Mäsak" # Please include the string: [perl #75266] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=75266 > rakudo: class A {has $.a; has @.m; method foo { for $.a .. 5 { say @.m[$_] }}}; my A $x

[perl #73106] [BUG] Rakudo doesn't handle placeholder parameters quite right

2010-05-22 Thread Carl Mäsak via RT
On Thu Feb 25 16:12:50 2010, masak wrote: > rakudo: my $a = sub { say $^a + $^a }; $a(4); # first of 2 > rakudo a215ee: OUTPUT«Not enough positional parameters > passed; got 1 but expected 2 [...] > rakudo: my $a = sub { say $^a + $^a }; $a(4, 5); # second of 2 > rakudo a215ee: OUTPUT«10␤» > *