Re: Debugging Grammars

2009-12-29 Thread Ovid
As a follow-up to this, I have my code posted at http://blogs.perl.org/users/ovid/2009/12/configini-in-perl-6.html While my admittedly clumsy grammar matches, transforming it into an AST has failed miserably. Aside from the advent calendar or the online docs at http://perlcabal.org/syn/S05.h

Re: Interactive Perl 6 shell

2009-12-29 Thread Carl Mäsak
Jason (>), Juan (>>): >> Does Perl6/Rakudo have an interactive perl shell like ruby does with irb? >> >> http://en.wikipedia.org/wiki/Interactive_Ruby_Shell >> >> Would be great for trying out the new syntax quickly. > > My phone accidentally sent an empty reply to this. What I was supposed to > re

Re: Debugging Grammars

2009-12-29 Thread Carl Mäsak
Ovid (>): > As a follow-up to this, I have my code posted at > http://blogs.perl.org/users/ovid/2009/12/configini-in-perl-6.html > > While my admittedly clumsy grammar matches, transforming it into an AST has > failed miserably. > > Aside from the advent calendar or the online docs at > http://p

Re: Debugging Grammars

2009-12-29 Thread Carl Mäsak
Carl (>), Ovid (>>): >> As a follow-up to this, I have my code posted at >> http://blogs.perl.org/users/ovid/2009/12/configini-in-perl-6.html >> >> While my admittedly clumsy grammar matches, transforming it into an AST has >> failed miserably. >> >> Aside from the advent calendar or the online d

[perl #71704] [BUG] Rakudo allows !! without ??, shouldn't

2009-12-29 Thread Carl Mäsak
# New Ticket Created by "Carl Mäsak" # Please include the string: [perl #71704] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=71704 > rakudo: say 4 !! 5 rakudo 77bf8c: 4␤ std: say 4 !! 5 std 29401: [31m=== [0mSORRY! [

[perl #71706] [BUG] Null PMC access when trying to initialize class A::B nested in class A

2009-12-29 Thread Carl Mäsak
# New Ticket Created by "Carl Mäsak" # Please include the string: [perl #71706] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=71706 > This be Rakudo 77bf8c. $ perl6 -e 'class A { class A::B {} }; A::B.new' Null PMC access

Re: [perl #71454] AutoReply: Method 'prime' not found for invocant of class 'Integer'

2009-12-29 Thread robert strahl
Please delete this obsolete ticket. Use [71456] instead. - Original Message > From: perl6 via RT > To: robert_str...@yahoo.com > Sent: Sat, December 19, 2009 7:51:54 PM > Subject: [perl #71454] AutoReply: Method 'prime' not found for invocant of > class 'Integer' > > Greetings, > >

[perl #71702] [BUG] Rakudo allows reversed ranges in character classes in regexes, shouldn't

2009-12-29 Thread Carl Mäsak
# New Ticket Created by "Carl Mäsak" # Please include the string: [perl #71702] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=71702 > mberends: I made great strides with GGE yesterday on the bus. \o/ the funniest things

[perl #71702] tests available

2009-12-29 Thread kyleha
This is an automatically generated mail to inform you that tests are now available in t/spec/S05-metasyntax/charset.t commit 8cf9ce6e75dec38eaf2e2c5c5474bc1336d468d2 Author: kyle Date: Tue Dec 29 17:02:28 2009 + [t/spec] Test for RT 71702: lethal reverse range in charset git-

[perl #71704] tests available

2009-12-29 Thread kyleha
This is an automatically generated mail to inform you that tests are now available in t/spec/S03-operators/ternary.t commit f9f3d3c6241d9f6eee2f14e789eaaa165899aded Author: kyle Date: Tue Dec 29 17:02:16 2009 + [t/spec] Test for RT 71704: "x !! y" should be a parse error git-

[perl #71706] tests available

2009-12-29 Thread kyleha
This is an automatically generated mail to inform you that tests are now available in t/spec/S12-construction/new.t commit bddfc9f9b4be04805276971978902c73320a45c7 Author: kyle Date: Tue Dec 29 17:02:35 2009 + [t/spec] Test for RT 71706: Null PMC Access git-svn-id: http://svn

Re: Interactive Perl 6 shell

2009-12-29 Thread Shawn H Corey
Juan Madrigal wrote: > Does Perl6/Rakudo have an interactive perl shell like ruby does with irb? $ perl -ple '$_=eval' (In Windows: perl -ple "$_=eval" ) Enter the command `exit` to end the session. -- Just my 0.0002 million dollars worth, Shawn Programming is as much about organizatio

[perl #71454] Method 'prime' not found for invocant of class 'Integer'

2009-12-29 Thread Carl Mäsak via RT
Rejected by request. See #71456 instead.

Re: Interactive Perl 6 shell

2009-12-29 Thread Mark J. Reed
With rakudo, just running perl6 with no arguments drops you into the RE_L. On Tuesday, December 29, 2009, Shawn H Corey wrote: > Juan Madrigal wrote: >> Does Perl6/Rakudo have an interactive perl shell like ruby does with irb? > > $ perl -ple '$_=eval' > > (In Windows: perl -ple "$_=eval" ) > > E