Announce: Rakudo Star 2010.08 released

2010-08-26 Thread Patrick R. Michaud
On behalf of the Rakudo and Perl 6 development teams, I'm happy to announce the August 2010 release of Rakudo Star, a useful and usable distribution of Perl 6. The tarball for the August 2010 release is available from http://github.com/rakudo/star/downloads. Rakudo Star is aimed at early

[perl #77454] [TODO] Implement .so in Rakudo

2010-08-26 Thread Carl Mäsak
# New Ticket Created by Carl Mäsak # Please include the string: [perl #77454] # in the subject line of all future correspondence about this issue. # URL: http://rt.perl.org/rt3/Ticket/Display.html?id=77454 ash_ rakudo: say 123.so p6eval rakudo df38ac: OUTPUT«Method 'so' not found [...] ash_

[perl #77458] [BUG] $*VM.perl and %*ENV.perl don't work in Rakudo

2010-08-26 Thread Carl Mäsak
# New Ticket Created by Carl Mäsak # Please include the string: [perl #77458] # in the subject line of all future correspondence about this issue. # URL: http://rt.perl.org/rt3/Ticket/Display.html?id=77458 masak rakudo: say $*VM.perl p6eval rakudo df38ac: OUTPUT«Cannot substr on a null

Could not find sub !UNIT_OUTER

2010-08-26 Thread a b
Hi, I have a little problem with compiling perl6 programs with rakudo-star-2010.07: # cat test.p6 say Greetings, earthlings, err Perl 6 neophytes.; # perl6 test.p6 Greetings, earthlings, err Perl 6 neophytes. # perl6 --target=pir test.p6 test.pir # parrot prog.pir error:imcc:syntax error,

[perl #77460] [BUG] Calling an anonymous sub in a for loop makes the for loop not run in Rakudo

2010-08-26 Thread Carl Mäsak
# New Ticket Created by Carl Mäsak # Please include the string: [perl #77460] # in the subject line of all future correspondence about this issue. # URL: http://rt.perl.org/rt3/Ticket/Display.html?id=77460 masak rakudo: my @a = 1; for 1..10 { my $last = @a[*-1]; say $last; push @a, (sub

Re: Could not find sub !UNIT_OUTER

2010-08-26 Thread Will Coleda
On Thu, Aug 26, 2010 at 4:46 PM, a b ab0...@gmail.com wrote: Hi, I have a little problem with compiling perl6 programs with rakudo-star-2010.07: FYI, Rakudo * 2010.08 was just released. # cat test.p6 say Greetings, earthlings, err Perl 6 neophytes.; # perl6 test.p6 Greetings,

[perl #77462] [BUG] infix::= binding should bind to a list, not to an item in Rakudo

2010-08-26 Thread Carl Mäsak
# New Ticket Created by Carl Mäsak # Please include the string: [perl #77462] # in the subject line of all future correspondence about this issue. # URL: http://rt.perl.org/rt3/Ticket/Display.html?id=77462 p6eval rakudo df38ac: OUTPUT«(1, Any, Any, Any, Any, Any, Any, Any, Any, Any)␤» masak