Skip to content

Instantly share code, notes, and snippets.

@snarkyboojum
Created May 30, 2010 14:16
Show Gist options
  • Save snarkyboojum/419058 to your computer and use it in GitHub Desktop.
Save snarkyboojum/419058 to your computer and use it in GitHub Desktop.
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