[perl #79868] [BUG] Can't mix role into type object in Rakudo

2010-11-27 Thread Carl Mäsak
# New Ticket Created by "Carl Mäsak" # Please include the string: [perl #79868] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=79868 > rakudo: my $x = [] but role {}; say "alive" rakudo : OUTPUT«alive␤» rakudo: my $x = c

[perl #79866] [BUG] Can't mix a postcircumfix:<( )> method into an Integer in Rakudo

2010-11-27 Thread Carl Mäsak
# New Ticket Created by "Carl Mäsak" # Please include the string: [perl #79866] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=79866 > rakudo: my $answer = [] but role { method postcircumfix:<( )>( ($arg) ) { say "You call

Re: Implementations until Perl 6.0.0 released?

2010-11-27 Thread Jonathan Worthington
On 27/11/2010 18:37, Jonathan Worthington wrote: On 26/11/2010 17:17, gvim wrote: I'm new to the Perl 6 lists so can someone tell me if the "implementations" of Perl 6 will eventually transition to a Perl 6.0.0 standard or will TIMTOWTDI apply to the language itself indefinitely? The impleme

Re: Implementations until Perl 6.0.0 released?

2010-11-27 Thread Jonathan Worthington
On 26/11/2010 17:17, gvim wrote: I'm new to the Perl 6 lists so can someone tell me if the "implementations" of Perl 6 will eventually transition to a Perl 6.0.0 standard or will TIMTOWTDI apply to the language itself indefinitely? The implementations are aiming towards passing a common test s

Re: Implementations until Perl 6.0.0 released?

2010-11-27 Thread yary
Roughly speaking, "will TIMTOWTDI apply to the language itself indefinitely?" = yes. Perl 5 is a language defined by an implementation, Perl 6 is a language defined by a syntax and documentation. While there's no predicting what will happen, as of now it looks like there will be a few implementati

Implementations until Perl 6.0.0 released?

2010-11-27 Thread gvim
I'm new to the Perl 6 lists so can someone tell me if the "implementations" of Perl 6 will eventually transition to a Perl 6.0.0 standard or will TIMTOWTDI apply to the language itself indefinitely? gvim

Re: sql idea

2010-11-27 Thread Carl Mäsak
Darren (>): > (I apologize if > this isn't correct Perl 6, and I'm not sure how to specify a hash slice that > returns pairs rather than just values): Ask, and it shall be given you (by S02): %hash = (:a, :b); %hash; # returns 'A', 'B', Nil %hash :p;# returns a => 'A', b =>