Created
May 30, 2010 14:16
-
-
Save snarkyboojum/419058 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
grammar Q::G{} | |
my $m=Q::G.parse(Q{}); | |
$ perl6 parsing_golf | |
===SORRY!=== | |
Colons may not be used to delimit quoting constructs at line 2, near "::G.parse(" | |
vs. | |
grammar Qi::G{} | |
my $m=Qi::G.parse(Q{}); | |
$ perl6 parsing_golf | |
===SORRY!=== | |
Confused at line 2, near "my $m=Qi::" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment