Announce: Niecza Perl 6 v19

2012-06-26 Thread Stefan O'Rear
Announce: Niecza Perl 6 v19 This is the nineteenth release of Niecza Perl 6, as usual scheduled on the last Monday of the month. Most of the activity this month has been on the non-bootstrap branch (see below). It has now been two years since the first commit to the Niecza repository.

[perl6/specs] 7b1a29: [S12] BUILD takes named arguments only

2012-06-26 Thread GitHub
Branch: refs/heads/master Home: https://github.com/perl6/specs Commit: 7b1a298d97123d34073b3512651e1c1893e5f948 https://github.com/perl6/specs/commit/7b1a298d97123d34073b3512651e1c1893e5f948 Author: Moritz Lenz mor...@faui2k3.org Date: 2012-06-25 (Mon, 25 Jun 2012) Changed

[perl #113848] Missing line no. in Cannot assign to a readonly variable or a value

2012-06-26 Thread via RT
# New Ticket Created by Siddhant Saraf # Please include the string: [perl #113848] # in the subject line of all future correspondence about this issue. # URL: https://rt.perl.org:443/rt3/Ticket/Display.html?id=113848 $ cat error.pl class foo { has $.x; } my $obj

[perl #113808] Bug report: whitespace in grammars

2012-06-26 Thread via RT
# New Ticket Created by Sir Robert Burbridge # Please include the string: [perl #113808] # in the subject line of all future correspondence about this issue. # URL: https://rt.perl.org:443/rt3/Ticket/Display.html?id=113808 Bug report. The snippet below (and associated github gist) says it

Perl6 grammars -- Parsing english

2012-06-26 Thread Lard Farnwell
Hi guys, To understand and play around with perl6 grammars I was trying to do a simple NLP parts of speech parser in perl6 grammars. This is sort of what I did: --- grammar Sentence{ proto rule VP {*} proto rule NP {*} rule sentence

Re: Perl6 grammars -- Parsing english

2012-06-26 Thread Moritz Lenz
On 06/26/2012 02:04 PM, Lard Farnwell wrote: Hi guys, To understand and play around with perl6 grammars I was trying to do a simple NLP parts of speech parser in perl6 grammars. This is sort of what I did: --- grammar Sentence{ proto rule VP {*}