Trying to install Rakudo

2009-06-20 Thread Ron Savage
Hi Folks >From this page: http://rakudo.org/how-to-get-rakudo I tried: 1) r...@zoe:~$ git clone git://github.com/rakudo/rakudo.git Initialized empty Git repository in /home/ron/rakudo/.git/ remote: Counting objects: 16457, done. remote: Compressing objects: 100% (4671/4671), done. remote: Total

[perl #66782] [BUG] calling .=subst leaves $/ undefined in the closure in the second parameter in Rakudo

2009-06-20 Thread Carl Mäsak
# New Ticket Created by "Carl Mäsak" # Please include the string: [perl #66782] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=66782 > rakudo: $_ = 1; .say; .=subst(/(.) $0*/, { $/.chars ~ $0 }, :g); .say rakudo 1b06df: O

[perl #66776] [BUG] STD.pm catches inadvertent block gobbling, Rakudo doesn't

2009-06-20 Thread Carl Mäsak
# New Ticket Created by "Carl Mäsak" # Please include the string: [perl #66776] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=66776 > perl6: for 1,2,3, { say $_ } rakudo 1b06df: OUTPUT«Could not find non-existent sub for

[perl #66790] [BUG] Perl6MultiSub and MultiSub do not stringify well

2009-06-20 Thread Patrick R. Michaud (via RT)
# New Ticket Created by Patrick R. Michaud # Please include the string: [perl #66790] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=66790 > The following code demonstrates that MultiSub and Perl6MultiSub do not stringify t

Re: negative index in perl6 array

2009-06-20 Thread Chas. Owens
On Sat, Jun 20, 2009 at 02:49, Aruna Goke wrote: > Chas. Owens wrote: >> >> On Sat, Jun 20, 2009 at 00:58, Aruna Goke wrote: >>> >>> is negative index not allowed in perl6? >>> >>> i tried >>> >>> my @test = (1 .. 20); >>> @test[-1].say; >>> >>> OUTPUT >>> Use of uninitialized value >>> >> >> You h