Last active
June 29, 2017 18:15
-
-
Save gosukiwi/519b55b4048303d4da9e5408b9942b08 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
;; Parsing 2 + 2 | |
Start := Binop | |
:= Subtraction | |
:= Adition | |
:= Division "+" Binop | |
:= Multiplication "+" Binop | |
:= Number "+" Binop | |
:= 2 "+" Binop | |
:= 2 "+" Subtraction | |
:= 2 "+" Adition | |
:= 2 "+" Division | |
:= 2 "+" Multiplication | |
:= 2 "+" Number | |
:= 2 "+" 2 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment