Skip to content

Instantly share code, notes, and snippets.

@zoffixznet
Created August 20, 2016 13:44
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save zoffixznet/1e4e52152e906470531f7ab8b92d6f21 to your computer and use it in GitHub Desktop.
Save zoffixznet/1e4e52152e906470531f7ab8b92d6f21 to your computer and use it in GitHub Desktop.
grammar G {
rule TOP { ^ <definition>* $ }
rule definition {
'block' '{' <line>+ '}'
}
rule line {
['line' ]+ % "&"
}
}
my $text = q<
block {
line
line & line
line
}
>;
say G.parse($text);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment