Is there a production release date?
Sent from my iPhone
Wendell Hatcher
wendell_hatc...@comcast.net
303-520-7554
Blogsite: http://thoughtsofaperlprogrammer.vox.com/
On Mar 18, 2010, at 11:47 AM, "Nuno 'smash' Carvalho"
wrote:
Announce: Rakudo Perl 6 development release #27 ("Copenhagen")
# New Ticket Created by "Carl Mäsak"
# Please include the string: [perl #73640]
# in the subject line of all future correspondence about this issue.
# http://rt.perl.org/rt3/Ticket/Display.html?id=73640 >
rakudo: .++()
rakudo e4e058: OUTPUT«Method 'unshift' not found for invocant
of class '
# New Ticket Created by "Carl Mäsak"
# Please include the string: [perl #73638]
# in the subject line of all future correspondence about this issue.
# http://rt.perl.org/rt3/Ticket/Display.html?id=73638 >
rakudo: $_ = 42; if $_ ~~ /\d+/ { say +$/ }
rakudo e4e058: OUTPUT«42»
rakudo: $_ = 4
# New Ticket Created by "Carl Mäsak"
# Please include the string: [perl #73634]
# in the subject line of all future correspondence about this issue.
# http://rt.perl.org/rt3/Ticket/Display.html?id=73634 >
I'm pretty sure there's a rakudobug in there somewhere.
rakudo: say []~~[1]
rakudo a8
Announce: Rakudo Perl 6 development release #27 ("Copenhagen")
On behalf of the Rakudo development team, I'm pleased to announce the
March 2010 development release of Rakudo Perl #27 "Copenhagen".
Rakudo is an implementation of Perl 6 on the Parrot Virtual Machine
(see http://www.parrot.org). The
Rakudo HEAD as of fed46878c492186a006c7a5a8500befda962714c:
X (1,2) -> [['a',1],['a',2],['b',1],['b',2]]
Z (1,2) -> ['a', 1, 'b', 2]
Per S03, the second one should yield [['a',1],['b',2]]. I'd expect
the two ops to flatten the same amount, regardless.
Also, the above is a manual Perlificatio
Carl MXXsak (via RT) wrote:
> # New Ticket Created by "Carl Mäsak"
> # Please include the string: [perl #66544]
> # in the subject line of all future correspondence about this issue.
> # http://rt.perl.org/rt3/Ticket/Display.html?id=66544 >
>
>
> rakudo: say (42 if 0).perl
> rakudo 86aeaf
Brian S. Julin (via RT) wrote:
> # New Ticket Created by "Brian S. Julin"
> # Please include the string: [perl #65556]
> # in the subject line of all future correspondence about this issue.
> # http://rt.perl.org/rt3/Ticket/Display.html?id=65556 >
>
>
>
>
> According to S03, when used in a
# New Ticket Created by "Carl Mäsak"
# Please include the string: [perl #73614]
# in the subject line of all future correspondence about this issue.
# http://rt.perl.org/rt3/Ticket/Display.html?id=73614 >
rakudo: sub foo(:$b, $a) {}
rakudo d0f934: ( no output )
std: sub foo(:$b, $a) {}
s