Skip to content

Instantly share code, notes, and snippets.

@gosukiwi
Last active June 29, 2017 18:15
Show Gist options
  • Save gosukiwi/519b55b4048303d4da9e5408b9942b08 to your computer and use it in GitHub Desktop.
Save gosukiwi/519b55b4048303d4da9e5408b9942b08 to your computer and use it in GitHub Desktop.
;; 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