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