Created
September 8, 2017 18:38
-
-
Save cono/30bd6392856626771c747ddaa29471b0 to your computer and use it in GitHub Desktop.
This file contains 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 SimpleCalc { | |
token TOP { | |
^^ <expr> $$ | |
} | |
token expr { | |
<number> | <tree-op> | |
} | |
token tree-op { | |
<expr> <op> <expr> | |
} | |
token number { \d+ } | |
token op { '+'|'-' } | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment