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
# 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
# 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
# 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
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