Parrot Compiler Tools Parrot Compiler Tools #11

Define a grammar - "abc example"

grammar ABC::Grammar;

token TOP { <statement> }

rule statement { <term> <addop> <term> }

token term { \d+ }

token addop { '+' | '-' }
continued...
Copyright © 2007 Patrick Michaud